final class org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack<T> extends org.eclipse.collections.impl.AbstractRichIterable<T> implements org.eclipse.collections.api.stack.ImmutableStack<T>, java.io.Serializable
minor version: 0
major version: 59
flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
this_class: org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack
super_class: org.eclipse.collections.impl.AbstractRichIterable
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 1
private final T element;
descriptor: Ljava/lang/Object;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: TT;
private final org.eclipse.collections.api.stack.ImmutableStack<T> next;
descriptor: Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
private final int size;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
void <init>(T, org.eclipse.collections.api.stack.ImmutableStack<T>);
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/stack/ImmutableStack;)V
flags: (0x0000)
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial org.eclipse.collections.impl.AbstractRichIterable.<init>:()V
1: aload 0
aload 1
putfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.element:Ljava/lang/Object;
2: aload 0
aload 2
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.stack.ImmutableStack
putfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.next:Lorg/eclipse/collections/api/stack/ImmutableStack;
3: aload 0
aload 2
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.size:()I
iconst_1
iadd
putfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:I
4: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 5 1 element TT;
0 5 2 next Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
Signature: (TT;Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;)V
MethodParameters:
Name Flags
element
next
public org.eclipse.collections.api.stack.ImmutableStack<T> push(T);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack
dup
aload 1
aload 0
invokespecial org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.<init>:(Ljava/lang/Object;Lorg/eclipse/collections/api/stack/ImmutableStack;)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 item TT;
Signature: (TT;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
item
public org.eclipse.collections.api.stack.ImmutableStack<T> pop();
descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.next:Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
public org.eclipse.collections.api.stack.ImmutableStack<T> pop(int);
descriptor: (I)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkNegativeCount:(I)V
1: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkZeroCount:(I)Z
ifeq 3
2: aload 0
areturn
3: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkSizeLessThanCount:(I)V
4: aload 0
astore 2
start local 2 5: iconst_0
istore 3
start local 3 6: goto 9
7: StackMap locals: org.eclipse.collections.api.stack.ImmutableStack int
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.pop:()Lorg/eclipse/collections/api/stack/ImmutableStack;
astore 2
8: iinc 3 1
StackMap locals:
StackMap stack:
9: iload 3
iload 1
if_icmplt 7
end local 3 10: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 11 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 11 1 count I
5 11 2 pointer Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
6 10 3 i I
Signature: (I)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
count
public T peek();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.element:Ljava/lang/Object;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()TT;
public org.eclipse.collections.api.list.ListIterable<T> peek(int);
descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkNegativeCount:(I)V
1: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkZeroCount:(I)Z
ifeq 3
2: getstatic org.eclipse.collections.api.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.empty:()Lorg/eclipse/collections/api/list/MutableList;
areturn
3: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkSizeLessThanCount:(I)V
4: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
iload 1
invokeinterface org.eclipse.collections.api.LazyIterable.take:(I)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 5 1 count I
Signature: (I)Lorg/eclipse/collections/api/list/ListIterable<TT;>;
MethodParameters:
Name Flags
count
private boolean checkZeroCount(int);
descriptor: (I)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=1, locals=2, args_size=2
start local 0 start local 1 0: iload 1
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 count I
MethodParameters:
Name Flags
count
private void checkSizeLessThanCount(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:()I
iload 1
if_icmpge 2
1: new java.lang.IllegalArgumentException
dup
new java.lang.StringBuilder
dup
ldc "Count must be less than size: Count = "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " Size = "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:()I
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 count I
MethodParameters:
Name Flags
count
private void checkSizeLessThanOrEqualToIndex(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:()I
iload 1
if_icmpgt 2
1: new java.lang.IllegalArgumentException
dup
new java.lang.StringBuilder
dup
ldc "Count must be less than size: Count = "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " Size = "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:()I
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 index I
MethodParameters:
Name Flags
index
private void checkNegativeCount(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: iload 1
ifge 2
1: new java.lang.IllegalArgumentException
dup
new java.lang.StringBuilder
dup
ldc "Count must be positive but was "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 count I
MethodParameters:
Name Flags
count
public T peekAt();
descriptor: (I)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkNegativeCount:(I)V
1: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.checkSizeLessThanOrEqualToIndex:(I)V
2: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.pop:(I)Lorg/eclipse/collections/api/stack/ImmutableStack;
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.peek:()Ljava/lang/Object;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 index I
Signature: (I)TT;
MethodParameters:
Name Flags
index
public T getFirst();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.peek:()Ljava/lang/Object;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()TT;
public T getLast();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
ldc "Cannot call getLast() on "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()TT;
public org.eclipse.collections.api.stack.MutableStack<T> toStack();
descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<TT;>;
public org.eclipse.collections.api.stack.ImmutableStack<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.stack.ImmutableStack<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public org.eclipse.collections.api.stack.ImmutableStack<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.stack.ImmutableStack<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public org.eclipse.collections.api.partition.stack.PartitionImmutableStack<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.partition.stack.PartitionArrayStack
dup
invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack.<init>:()V
astore 2
start local 2 1: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
new org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionProcedure
dup
aload 1
aload 2
invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/impl/partition/stack/PartitionArrayStack;)V
invokeinterface org.eclipse.collections.api.LazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
invokevirtual org.eclipse.collections.impl.partition.stack.PartitionArrayStack.toImmutable:()Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
1 3 2 partitionMutableStack Lorg/eclipse/collections/impl/partition/stack/PartitionArrayStack<TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public <P> org.eclipse.collections.api.partition.stack.PartitionImmutableStack<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=4, args_size=3
start local 0 start local 1 start local 2 0: new org.eclipse.collections.impl.partition.stack.PartitionArrayStack
dup
invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack.<init>:()V
astore 3
start local 3 1: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
new org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionPredicate2Procedure
dup
aload 1
aload 2
aload 3
invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionPredicate2Procedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/impl/partition/stack/PartitionArrayStack;)V
invokeinterface org.eclipse.collections.api.LazyIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 3
invokevirtual org.eclipse.collections.impl.partition.stack.PartitionArrayStack.toImmutable:()Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
0 3 2 parameter TP;
1 3 3 partitionMutableStack Lorg/eclipse/collections/impl/partition/stack/PartitionArrayStack<TT;>;
Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
parameter
public <S> org.eclipse.collections.api.stack.ImmutableStack<S> selectInstancesOf(java.lang.Class<S>);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 clazz Ljava/lang/Class<TS;>;
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TS;>;
MethodParameters:
Name Flags
clazz
public <V> org.eclipse.collections.api.stack.ImmutableStack<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TV;>;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableBooleanStack collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.BooleanStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableBooleanStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/LazyBooleanIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableBooleanStackFactory.withAllReversed:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableByteStack collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.ByteStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableByteStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/LazyByteIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableByteStackFactory.withAllReversed:(Lorg/eclipse/collections/api/ByteIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableCharStack collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.CharStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableCharStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/LazyCharIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableCharStackFactory.withAllReversed:(Lorg/eclipse/collections/api/CharIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableDoubleStack collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.DoubleStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableDoubleStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/LazyDoubleIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableDoubleStackFactory.withAllReversed:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableFloatStack collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.FloatStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableFloatStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/LazyFloatIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableFloatStackFactory.withAllReversed:(Lorg/eclipse/collections/api/FloatIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableIntStack collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.IntStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableIntStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/LazyIntIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableIntStackFactory.withAllReversed:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableLongStack collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.LongStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableLongStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LazyLongIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableLongStackFactory.withAllReversed:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
MethodParameters:
Name Flags
function
public org.eclipse.collections.api.stack.primitive.ImmutableShortStack collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.primitive.ShortStacks.immutable:Lorg/eclipse/collections/api/factory/stack/primitive/ImmutableShortStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/LazyShortIterable;
invokeinterface org.eclipse.collections.api.factory.stack.primitive.ImmutableShortStackFactory.withAllReversed:(Lorg/eclipse/collections/api/ShortIterable;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
MethodParameters:
Name Flags
function
public <P, V> org.eclipse.collections.api.stack.ImmutableStack<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
0 1 2 parameter TP;
Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/stack/ImmutableStack<TV;>;
MethodParameters:
Name Flags
function
parameter
public <V> org.eclipse.collections.api.stack.ImmutableStack<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
0 1 2 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TV;>;
MethodParameters:
Name Flags
predicate
function
public <V> org.eclipse.collections.api.stack.ImmutableStack<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TV;>;
MethodParameters:
Name Flags
function
public <V> org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap<V> sumByInt(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectLongMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap<TV;>;
MethodParameters:
Name Flags
groupBy
function
public <V> org.eclipse.collections.api.map.primitive.ImmutableObjectDoubleMap<V> sumByFloat(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectDoubleMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap<TV;>;
MethodParameters:
Name Flags
groupBy
function
public <V> org.eclipse.collections.api.map.primitive.ImmutableObjectLongMap<V> sumByLong(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectLongMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectLongMap<TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap<TV;>;
MethodParameters:
Name Flags
groupBy
function
public <V> org.eclipse.collections.api.map.primitive.ImmutableObjectDoubleMap<V> sumByDouble(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
aload 2
invokeinterface org.eclipse.collections.api.LazyIterable.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.map.primitive.ObjectDoubleMap.toImmutable:()Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
0 2 2 function Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
1 2 3 map Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap<TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap<TV;>;
MethodParameters:
Name Flags
groupBy
function
public <V> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
getstatic org.eclipse.collections.impl.factory.Multimaps.mutable:Lorg/eclipse/collections/impl/factory/Multimaps$MutableMultimaps;
getfield org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps.list:Lorg/eclipse/collections/impl/factory/Multimaps$MutableMultimaps$MutableListMultimapFactory;
invokevirtual org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps$MutableListMultimapFactory.empty:()Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.api.multimap.list.MutableListMultimap
invokeinterface org.eclipse.collections.api.multimap.list.MutableListMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap<TV;TT;>;
MethodParameters:
Name Flags
function
public <V> org.eclipse.collections.api.multimap.list.ImmutableListMultimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
getstatic org.eclipse.collections.impl.factory.Multimaps.mutable:Lorg/eclipse/collections/impl/factory/Multimaps$MutableMultimaps;
getfield org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps.list:Lorg/eclipse/collections/impl/factory/Multimaps$MutableMultimaps$MutableListMultimapFactory;
invokevirtual org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps$MutableListMultimapFactory.empty:()Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
checkcast org.eclipse.collections.api.multimap.list.MutableListMultimap
invokeinterface org.eclipse.collections.api.multimap.list.MutableListMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap<TV;TT;>;
MethodParameters:
Name Flags
function
public <V> org.eclipse.collections.api.map.ImmutableMap<V, T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
getstatic org.eclipse.collections.api.factory.Maps.mutable:Lorg/eclipse/collections/api/factory/map/MutableMapFactory;
aload 0
getfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:I
invokeinterface org.eclipse.collections.api.factory.map.MutableMapFactory.withInitialCapacity:(I)Lorg/eclipse/collections/api/map/MutableMap;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
checkcast org.eclipse.collections.api.map.MutableMap
invokeinterface org.eclipse.collections.api.map.MutableMap.toImmutable:()Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TV;TT;>;
MethodParameters:
Name Flags
function
public <S> org.eclipse.collections.api.stack.ImmutableStack<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
aload 1
invokeinterface org.eclipse.collections.api.LazyIterable.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 that Ljava/lang/Iterable<TS;>;
Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
MethodParameters:
Name Flags
that
public org.eclipse.collections.api.stack.ImmutableStack<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.zipWithIndex:()Lorg/eclipse/collections/api/LazyIterable;
invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAllReversed:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Lorg/eclipse/collections/api/stack/ImmutableStack<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;
public org.eclipse.collections.api.stack.ImmutableStack<T> toImmutable();
descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<T>> chunk(int);
descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.asLazy:()Lorg/eclipse/collections/api/LazyIterable;
iload 1
invokeinterface org.eclipse.collections.api.LazyIterable.chunk:(I)Lorg/eclipse/collections/api/LazyIterable;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 size I
Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TT;>;>;
MethodParameters:
Name Flags
size
public <K, V> org.eclipse.collections.api.map.ImmutableMap<K, V> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.procedure.Procedure2<? super V, ? super T>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: getstatic org.eclipse.collections.api.factory.Maps.mutable:Lorg/eclipse/collections/api/factory/map/MutableMapFactory;
invokeinterface org.eclipse.collections.api.factory.map.MutableMapFactory.empty:()Lorg/eclipse/collections/api/map/MutableMap;
astore 4
start local 4 1: aload 0
new org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure
dup
aload 4
aload 1
aload 2
aload 3
invokespecial org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMapIterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 4
invokeinterface org.eclipse.collections.api.map.MutableMap.toImmutable:()Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 3 1 groupBy Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
0 3 2 zeroValueFactory Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
0 3 3 mutatingAggregator Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TT;>;
1 3 4 map Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TT;>;)Lorg/eclipse/collections/api/map/ImmutableMap<TK;TV;>;
MethodParameters:
Name Flags
groupBy
zeroValueFactory
mutatingAggregator
public <V> org.eclipse.collections.api.bag.ImmutableBag<V> countByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.empty:()Lorg/eclipse/collections/api/bag/MutableBag;
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.countByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/bag/MutableBagIterable;)Lorg/eclipse/collections/api/bag/MutableBagIterable;
checkcast org.eclipse.collections.api.bag.MutableBag
invokeinterface org.eclipse.collections.api.bag.MutableBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 function Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
MethodParameters:
Name Flags
function
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.size:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
public boolean notEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iconst_1
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
public org.eclipse.collections.api.stack.ImmutableStack<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/ImmutableStack;
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.stack.immutable.ImmutableNotEmptyStack.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 2 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
procedure
public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
astore 2
start local 2 1: goto 4
2: StackMap locals: org.eclipse.collections.api.stack.ImmutableStack
StackMap stack:
aload 1
aload 2
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.peek:()Ljava/lang/Object;
invokeinterface org.eclipse.collections.api.block.procedure.Procedure.accept:(Ljava/lang/Object;)V
3: aload 2
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.pop:()Lorg/eclipse/collections/api/stack/ImmutableStack;
astore 2
4: StackMap locals:
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.notEmpty:()Z
ifne 2
5: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 6 1 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
1 6 2 pointer Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
MethodParameters:
Name Flags
procedure
public org.eclipse.collections.api.stack.ImmutableStack<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".takeWhile() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.stack.ImmutableStack<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".dropWhile() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.partition.stack.PartitionImmutableStack<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".partitionWhile() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack<TT;>;
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.api.stack.ImmutableStack<T> distinct();
descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".distinct() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;
public int indexOf(java.lang.Object);
descriptor: (Ljava/lang/Object;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".indexOf() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 object Ljava/lang/Object;
MethodParameters:
Name Flags
object
public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S>, org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super S>);
descriptor: (Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".corresponds() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 other Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;
0 1 2 predicate Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;
Signature: <S:Ljava/lang/Object;>(Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;)Z
MethodParameters:
Name Flags
other
predicate
public boolean hasSameElements(org.eclipse.collections.api.ordered.OrderedIterable<T>);
descriptor: (Lorg/eclipse/collections/api/ordered/OrderedIterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".hasSameElements() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 other Lorg/eclipse/collections/api/ordered/OrderedIterable<TT;>;
Signature: (Lorg/eclipse/collections/api/ordered/OrderedIterable<TT;>;)Z
MethodParameters:
Name Flags
other
public void forEach(int, int, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
descriptor: (IILorg/eclipse/collections/api/block/procedure/Procedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".forEach() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 startIndex I
0 1 2 endIndex I
0 1 3 procedure Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
Signature: (IILorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
MethodParameters:
Name Flags
startIndex
endIndex
procedure
public void forEachWithIndex(int, int, org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
descriptor: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".forEachWithIndex() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 fromIndex I
0 1 2 toIndex I
0 1 3 objectIntProcedure Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
Signature: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
MethodParameters:
Name Flags
fromIndex
toIndex
objectIntProcedure
public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: new java.lang.UnsupportedOperationException
dup
new java.lang.StringBuilder
dup
aload 0
invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
ldc ".detectIndex() not implemented yet"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 1 1 predicate Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
MethodParameters:
Name Flags
predicate
public java.util.Iterator<T> iterator();
descriptor: ()Ljava/util/Iterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.immutable.ImmutableStackIterator
dup
aload 0
invokespecial org.eclipse.collections.impl.stack.immutable.ImmutableStackIterator.<init>:(Lorg/eclipse/collections/api/stack/ImmutableStack;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
Signature: ()Ljava/util/Iterator<TT;>;
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=5, args_size=2
start local 0 start local 1 0: aload 0
aload 1
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 1
instanceof org.eclipse.collections.api.stack.StackIterable
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
checkcast org.eclipse.collections.api.stack.StackIterable
astore 2
start local 2 5: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.iterator:()Ljava/util/Iterator;
astore 3
start local 3 6: aload 2
invokeinterface org.eclipse.collections.api.stack.StackIterable.iterator:()Ljava/util/Iterator;
astore 4
start local 4 7: goto 10
8: StackMap locals: org.eclipse.collections.api.stack.StackIterable java.util.Iterator java.util.Iterator
StackMap stack:
aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
aload 4
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
invokestatic org.eclipse.collections.impl.block.factory.Comparators.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
ifne 10
9: iconst_0
ireturn
10: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifeq 11
aload 4
invokeinterface java.util.Iterator.hasNext:()Z
ifne 8
11: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 12
aload 4
invokeinterface java.util.Iterator.hasNext:()Z
ifne 12
iconst_1
ireturn
StackMap locals:
StackMap stack:
12: iconst_0
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
0 13 1 o Ljava/lang/Object;
5 13 2 that Lorg/eclipse/collections/api/stack/StackIterable<*>;
6 13 3 thisIterator Ljava/util/Iterator<TT;>;
7 13 4 thatIterator Ljava/util/Iterator<*>;
MethodParameters:
Name Flags
o
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=1
start local 0 0: iconst_1
istore 1
start local 1 1: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.iterator:()Ljava/util/Iterator;
astore 3
goto 6
StackMap locals: org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack int top java.util.Iterator
StackMap stack:
2: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.Object
astore 2
start local 2 3: bipush 31
iload 1
imul
aload 2
ifnonnull 4
iconst_0
goto 5
StackMap locals: org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack int java.lang.Object java.util.Iterator
StackMap stack: int
4: aload 2
invokevirtual java.lang.Object.hashCode:()I
StackMap locals: org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack int java.lang.Object java.util.Iterator
StackMap stack: int int
5: iadd
istore 1
end local 2 6: StackMap locals: org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack int top java.util.Iterator
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 2
7: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
1 8 1 hashCode I
3 6 2 each TT;
private java.lang.Object writeReplace();
descriptor: ()Ljava/lang/Object;
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.stack.immutable.ImmutableStackSerializationProxy
dup
aload 0
invokespecial org.eclipse.collections.impl.stack.immutable.ImmutableStackSerializationProxy.<init>:(Lorg/eclipse/collections/api/stack/StackIterable;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/stack/immutable/ImmutableNotEmptyStack<TT;>;
public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByInt(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.IntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
aload 2
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
aload 2
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
aload 2
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zipWithIndex:()Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zipWithIndex:()Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable zipWithIndex();
descriptor: ()Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zipWithIndex:()Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable zip(java.lang.Iterable);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.CharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/CharIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedCharIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.CharStack collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/CharStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableCharStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable flatCollect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.IntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/IntIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedIntIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.IntStack collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/IntStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableIntStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.LongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LongIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedLongIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.LongStack collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/LongStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableLongStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ByteIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedByteIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.ByteStack collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/ByteStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableByteStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.bag.Bag countByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.countByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByLong(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.LongFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectLongMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.PartitionIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.ordered.PartitionOrderedIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionOrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.stack.PartitionStack partition(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.DoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/DoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.DoubleStack collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/DoubleStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableDoubleStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.ordered.OrderedIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/OrderedIterableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.list.ListMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ListMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable select(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ShortIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedShortIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.ShortStack collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/ShortStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableShortStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.procedure.Procedure
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.FloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/FloatIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedFloatIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.FloatStack collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/FloatStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableFloatStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.ordered.OrderedIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/OrderedIterableMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.multimap.list.ListMultimap groupBy(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ListMultimap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/ImmutableListMultimap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByDouble(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.DoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable distinct();
descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.distinct:()Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable distinct();
descriptor: ()Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.distinct:()Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.PartitionIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.ordered.PartitionOrderedIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/ordered/PartitionOrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.stack.PartitionStack partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate2
aload 2
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function2
aload 2
checkcast java.lang.Object
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByFloat(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.FloatFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ImmutableObjectDoubleMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable selectInstancesOf(java.lang.Class);
descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Class
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.BooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/BooleanIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.primitive.OrderedBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedBooleanIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.primitive.BooleanStack collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/BooleanStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/ImmutableBooleanStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable collect(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=4
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
aload 2
checkcast org.eclipse.collections.api.block.function.Function0
aload 3
checkcast org.eclipse.collections.api.block.procedure.Procedure2
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.stack.StackIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/stack/StackIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.ordered.OrderedIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
invokeinterface org.eclipse.collections.api.stack.ImmutableStack.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/stack/ImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.MapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.function.Function
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/ImmutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.ordered.PartitionOrderedIterable partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionOrderedIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.partition.stack.PartitionStack partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionStack;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast org.eclipse.collections.api.block.predicate.Predicate
invokevirtual org.eclipse.collections.impl.stack.immutable.ImmutableNotEmptyStack.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionImmutableStack;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/AbstractRichIterable<TT;>;Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;Ljava/io/Serializable;
SourceFile: "ImmutableNotEmptyStack.java"
InnerClasses:
public final MutableMultimaps = org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps of org.eclipse.collections.impl.factory.Multimaps
public final MutableListMultimapFactory = org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps$MutableListMultimapFactory of org.eclipse.collections.impl.factory.Multimaps$MutableMultimaps
public final PartitionPredicate2Procedure = org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionPredicate2Procedure of org.eclipse.collections.impl.partition.stack.PartitionArrayStack
public final PartitionProcedure = org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionProcedure of org.eclipse.collections.impl.partition.stack.PartitionArrayStack