public class org.eclipse.collections.impl.lazy.primitive.SelectLongIterable extends org.eclipse.collections.impl.lazy.primitive.AbstractLazyLongIterable
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.eclipse.collections.impl.lazy.primitive.SelectLongIterable
super_class: org.eclipse.collections.impl.lazy.primitive.AbstractLazyLongIterable
{
private final org.eclipse.collections.api.LongIterable delegate;
descriptor: Lorg/eclipse/collections/api/LongIterable;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate;
descriptor: Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
public void <init>(org.eclipse.collections.api.LongIterable, org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
descriptor: (Lorg/eclipse/collections/api/LongIterable;Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial org.eclipse.collections.impl.lazy.primitive.AbstractLazyLongIterable.<init>:()V
1: aload 0
aload 1
putfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.delegate:Lorg/eclipse/collections/api/LongIterable;
2: aload 0
aload 2
putfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.predicate:Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 4 1 delegate Lorg/eclipse/collections/api/LongIterable;
0 4 2 predicate Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
MethodParameters:
Name Flags
delegate
predicate
public org.eclipse.collections.api.iterator.LongIterator longIterator();
descriptor: ()Lorg/eclipse/collections/api/iterator/LongIterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$SelectLongIterator
dup
aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.delegate:Lorg/eclipse/collections/api/LongIterable;
aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.predicate:Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
invokespecial org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$SelectLongIterator.<init>:(Lorg/eclipse/collections/api/LongIterable;Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public void each(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.delegate:Lorg/eclipse/collections/api/LongIterable;
new org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$IfLongProcedure
dup
aload 0
aload 1
invokespecial org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$IfLongProcedure.<init>:(Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
invokeinterface org.eclipse.collections.api.LongIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
MethodParameters:
Name Flags
procedure
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.delegate:Lorg/eclipse/collections/api/LongIterable;
aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.predicate:Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
invokeinterface org.eclipse.collections.api.LongIterable.count:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.longIterator:()Lorg/eclipse/collections/api/iterator/LongIterator;
invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
ifeq 1
iconst_0
goto 2
StackMap locals:
StackMap stack:
1: iconst_1
StackMap locals:
StackMap stack: int
2: ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public boolean notEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.longIterator:()Lorg/eclipse/collections/api/iterator/LongIterator;
invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public int count(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$CountLongProcedure
dup
aload 1
invokespecial org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$CountLongProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)V
astore 2
start local 2 1: aload 0
aload 2
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
2: aload 2
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$CountLongProcedure.getCount:()I
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
1 3 2 countLongProcedure Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable$CountLongProcedure;
MethodParameters:
Name Flags
predicate
public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.delegate:Lorg/eclipse/collections/api/LongIterable;
aload 0
getfield org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.predicate:Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
aload 1
invokestatic org.eclipse.collections.impl.block.factory.primitive.LongPredicates.and:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
invokeinterface org.eclipse.collections.api.LongIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
MethodParameters:
Name Flags
predicate
public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.eclipse.collections.impl.block.factory.primitive.LongPredicates.not:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
MethodParameters:
Name Flags
predicate
public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
ifeq 1
iconst_0
goto 2
StackMap locals:
StackMap stack:
1: iconst_1
StackMap locals:
StackMap stack: int
2: ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
MethodParameters:
Name Flags
predicate
public long[] toArray();
descriptor: ()[J
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.size:()I
newarray 11
astore 1
start local 1 1: aload 0
new org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$1
dup
aload 0
aload 1
invokespecial org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$1.<init>:(Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;[J)V
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
1 3 1 array [J
public boolean containsAll(long[]);
descriptor: ([J)Z
flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
Code:
stack=3, locals=7, args_size=2
start local 0 start local 1 0: aload 1
dup
astore 6
arraylength
istore 5
iconst_0
istore 4
goto 5
StackMap locals: org.eclipse.collections.impl.lazy.primitive.SelectLongIterable long[] top top int int long[]
StackMap stack:
1: aload 6
iload 4
laload
lstore 2
start local 2 2: aload 0
lload 2
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.contains:(J)Z
ifne 4
3: iconst_0
ireturn
end local 2 4: StackMap locals:
StackMap stack:
iinc 4 1
StackMap locals:
StackMap stack:
5: iload 4
iload 5
if_icmplt 1
6: iconst_1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 7 1 source [J
2 4 2 value J
MethodParameters:
Name Flags
source
public boolean containsAll(org.eclipse.collections.api.LongIterable);
descriptor: (Lorg/eclipse/collections/api/LongIterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface org.eclipse.collections.api.LongIterable.longIterator:()Lorg/eclipse/collections/api/iterator/LongIterator;
astore 2
start local 2 1: goto 4
2: StackMap locals: org.eclipse.collections.api.iterator.LongIterator
StackMap stack:
aload 0
aload 2
invokeinterface org.eclipse.collections.api.iterator.LongIterator.next:()J
invokevirtual org.eclipse.collections.impl.lazy.primitive.SelectLongIterable.contains:(J)Z
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
ifne 2
end local 2 5: iconst_1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
0 6 1 source Lorg/eclipse/collections/api/LongIterable;
1 5 2 iterator Lorg/eclipse/collections/api/iterator/LongIterator;
MethodParameters:
Name Flags
source
public org.eclipse.collections.api.list.primitive.MutableLongList toList();
descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableLongList;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.newList:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/LongArrayList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public org.eclipse.collections.api.set.primitive.MutableLongSet toSet();
descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.newSet:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
public org.eclipse.collections.api.bag.primitive.MutableLongBag toBag();
descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag.newBag:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/LongHashBag;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/lazy/primitive/SelectLongIterable;
}
SourceFile: "SelectLongIterable.java"
NestMembers:
org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$1 org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$CountLongProcedure org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$IfLongProcedure org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$SelectLongIterator
InnerClasses:
org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$1
private final CountLongProcedure = org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$CountLongProcedure of org.eclipse.collections.impl.lazy.primitive.SelectLongIterable
private final IfLongProcedure = org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$IfLongProcedure of org.eclipse.collections.impl.lazy.primitive.SelectLongIterable
private final SelectLongIterator = org.eclipse.collections.impl.lazy.primitive.SelectLongIterable$SelectLongIterator of org.eclipse.collections.impl.lazy.primitive.SelectLongIterable