public class org.eclipse.collections.impl.stack.mutable.ArrayStack<T> implements org.eclipse.collections.api.stack.MutableStack<T>, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.stack.mutable.ArrayStack
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private org.eclipse.collections.impl.list.mutable.FastList<T> delegate;
    descriptor: Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 110
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 112
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         2: .line 113
            return
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int initialCapacity
         0: .line 115
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 117
            aload 0 /* this */
            iload 1 /* initialCapacity */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         2: .line 118
            return
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    3     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(java.lang.Iterable<T>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Iterable items
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 122
            aload 0 /* this */
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         2: .line 123
            return
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    3     1  items  Ljava/lang/Iterable<TT;>;
    Signature: (Ljava/lang/Iterable<TT;>;)V
    MethodParameters:
       Name  Flags
      items  

  public void <init>();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object[] items
         0: .line 125
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 127
            aload 0 /* this */
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.wrapCopy:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         2: .line 128
            return
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    3     1  items  [Ljava/lang/Object;
    Signature: ([TT;)V
    MethodParameters:
       Name  Flags
      items  

  public static <T> org.eclipse.collections.impl.stack.mutable.ArrayStack<T> newStack();
    descriptor: ()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 132
            new org.eclipse.collections.impl.stack.mutable.ArrayStack
            dup
            invokespecial org.eclipse.collections.impl.stack.mutable.ArrayStack.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public static <T> org.eclipse.collections.impl.stack.mutable.ArrayStack<T> newStack(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable items
         0: .line 137
            new org.eclipse.collections.impl.stack.mutable.ArrayStack
            dup
            aload 0 /* items */
            invokespecial org.eclipse.collections.impl.stack.mutable.ArrayStack.<init>:(Ljava/lang/Iterable;)V
            areturn
        end local 0 // java.lang.Iterable items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public static <T> org.eclipse.collections.impl.stack.mutable.ArrayStack<T> newStackWith(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Object[] items
         0: .line 142
            new org.eclipse.collections.impl.stack.mutable.ArrayStack
            dup
            aload 0 /* items */
            invokespecial org.eclipse.collections.impl.stack.mutable.ArrayStack.<init>:([Ljava/lang/Object;)V
            areturn
        end local 0 // java.lang.Object[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  items  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public static <T> org.eclipse.collections.impl.stack.mutable.ArrayStack<T> newStackFromTopToBottom(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.lang.Object[] items
         0: .line 147
            new org.eclipse.collections.impl.stack.mutable.ArrayStack
            dup
            aload 0 /* items */
            arraylength
            invokespecial org.eclipse.collections.impl.stack.mutable.ArrayStack.<init>:(I)V
            astore 1 /* stack */
        start local 1 // org.eclipse.collections.impl.stack.mutable.ArrayStack stack
         1: .line 148
            aload 0 /* items */
            arraylength
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 150
      StackMap locals: org.eclipse.collections.impl.stack.mutable.ArrayStack int
      StackMap stack:
            aload 1 /* stack */
            aload 0 /* items */
            iload 2 /* i */
            aaload
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.push:(Ljava/lang/Object;)V
         4: .line 148
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            ifge 3
        end local 2 // int i
         6: .line 152
            aload 1 /* stack */
            areturn
        end local 1 // org.eclipse.collections.impl.stack.mutable.ArrayStack stack
        end local 0 // java.lang.Object[] items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0  items  [Ljava/lang/Object;
            1    7     1  stack  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            2    6     2      i  I
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public static <T> org.eclipse.collections.impl.stack.mutable.ArrayStack<T> newStackFromTopToBottom(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.lang.Iterable items
         0: .line 157
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStack:()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            astore 1 /* stack */
        start local 1 // org.eclipse.collections.impl.stack.mutable.ArrayStack stack
         1: .line 158
            aload 0 /* items */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* list */
        start local 2 // org.eclipse.collections.impl.list.mutable.FastList list
         2: .line 159
            aload 1 /* stack */
            aload 2 /* list */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         3: .line 160
            aload 1 /* stack */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.FastList list
        end local 1 // org.eclipse.collections.impl.stack.mutable.ArrayStack stack
        end local 0 // java.lang.Iterable items
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0  items  Ljava/lang/Iterable<+TT;>;
            1    4     1  stack  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            2    4     2   list  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public void push();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object item
         0: .line 166
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 1 /* item */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 167
            return
        end local 1 // java.lang.Object item
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  item  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      item  

  public T pop();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 172
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         1: .line 173
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iconst_1
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.remove:(I)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()TT;

  private void checkEmptyStack();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 178
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.isEmpty:()Z
            ifeq 2
         1: .line 180
            new java.util.EmptyStackException
            dup
            invokespecial java.util.EmptyStackException.<init>:()V
            athrow
         2: .line 182
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public org.eclipse.collections.api.list.ListIterable<T> pop(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
         0: .line 187
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkNegativeCount:(I)V
         1: .line 188
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         2: .line 189
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkZeroCount:(I)Z
            ifeq 4
         3: .line 191
            aload 2 /* result */
            areturn
         4: .line 193
      StackMap locals: org.eclipse.collections.api.list.MutableList
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         5: .line 194
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkSizeLessThanCount:(I)V
         6: .line 195
            goto 9
         7: .line 197
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.pop:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         8: .line 198
            iinc 1 /* count */ -1
         9: .line 195
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ifgt 7
        10: .line 200
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0   11     1   count  I
            2   11     2  result  Lorg/eclipse/collections/api/list/MutableList<TT;>;
    Signature: (I)Lorg/eclipse/collections/api/list/ListIterable<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public <R extends java.util.Collection<T>> R pop(int, );
    descriptor: (ILjava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
        start local 2 // java.util.Collection targetCollection
         0: .line 206
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkNegativeCount:(I)V
         1: .line 207
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkZeroCount:(I)Z
            ifeq 3
         2: .line 209
            aload 2 /* targetCollection */
            areturn
         3: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         4: .line 212
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkSizeLessThanCount:(I)V
         5: .line 213
            goto 8
         6: .line 215
      StackMap locals:
      StackMap stack:
            aload 2 /* targetCollection */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.pop:()Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         7: .line 216
            iinc 1 /* count */ -1
         8: .line 213
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ifgt 6
         9: .line 218
            aload 2 /* targetCollection */
            areturn
        end local 2 // java.util.Collection targetCollection
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0              this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0   10     1             count  I
            0   10     2  targetCollection  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(ITR;)TR;
    MethodParameters:
                  Name  Flags
      count             
      targetCollection  

  public <R extends org.eclipse.collections.api.stack.MutableStack<T>> R pop(int, );
    descriptor: (ILorg/eclipse/collections/api/stack/MutableStack;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
        start local 2 // org.eclipse.collections.api.stack.MutableStack targetStack
         0: .line 224
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkNegativeCount:(I)V
         1: .line 225
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkZeroCount:(I)Z
            ifeq 3
         2: .line 227
            aload 2 /* targetStack */
            areturn
         3: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         4: .line 230
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkSizeLessThanCount:(I)V
         5: .line 231
            goto 8
         6: .line 233
      StackMap locals:
      StackMap stack:
            aload 2 /* targetStack */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.pop:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.stack.MutableStack.push:(Ljava/lang/Object;)V
         7: .line 234
            iinc 1 /* count */ -1
         8: .line 231
      StackMap locals:
      StackMap stack:
            iload 1 /* count */
            ifgt 6
         9: .line 236
            aload 2 /* targetStack */
            areturn
        end local 2 // org.eclipse.collections.api.stack.MutableStack targetStack
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0   10     1        count  I
            0   10     2  targetStack  TR;
    Signature: <R::Lorg/eclipse/collections/api/stack/MutableStack<TT;>;>(ITR;)TR;
    MethodParameters:
             Name  Flags
      count        
      targetStack  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 242
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.clear:()V
         1: .line 243
            return
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  private boolean checkZeroCount(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
         0: .line 247
            iload 1 /* count */
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  count  I
    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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 253
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         1: .line 254
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.getLast:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
         0: .line 260
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkNegativeCount:(I)V
         1: .line 261
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkZeroCount:(I)Z
            ifeq 3
         2: .line 263
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
         3: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         4: .line 266
            aload 0 /* this */
            iload 1 /* count */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkSizeLessThanCount:(I)V
         5: .line 268
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.FastList result
         6: .line 269
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 271
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int
      StackMap stack:
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 3 /* i */
            iconst_1
            iadd
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.get:(I)Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         9: .line 269
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 1 /* count */
            if_icmplt 8
        end local 3 // int i
        11: .line 273
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.FastList result
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0   12     1   count  I
            6   12     2  result  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            7   11     3       i  I
    Signature: (I)Lorg/eclipse/collections/api/list/ListIterable<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public T peekAt();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int index
         0: .line 279
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkNegativeCount:(I)V
         1: .line 280
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkEmptyStack:()V
         2: .line 281
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.checkSizeLessThanOrEqualToIndex:(I)V
         3: .line 282
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iconst_1
            isub
            iload 1 /* index */
            isub
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    4     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 288
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 294
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.isEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 300
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.notEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 306
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.peek:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 312
            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 /* this */
            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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 318
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.getOnly:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()TT;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object object
         0: .line 324
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* object */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Iterable source
         0: .line 330
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.containsAllIterable:(Ljava/lang/Iterable;)Z
            ireturn
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  source  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Collection source
         0: .line 336
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  source  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAllArguments(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object[] elements
         0: .line 342
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.containsAllArguments:([Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  elements  [Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      elements  

  public <V> org.eclipse.collections.impl.stack.mutable.ArrayStack<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 348
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/LazyIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.stack.primitive.MutableBooleanStack 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/MutableBooleanStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 354
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* booleanFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/LazyBooleanIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.BooleanArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/BooleanIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/BooleanArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  booleanFunction  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/MutableBooleanStack;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 360
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* booleanFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
            0    1     2           target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;TR;)TR;
    MethodParameters:
                 Name  Flags
      booleanFunction  
      target           

  public org.eclipse.collections.api.stack.primitive.MutableByteStack 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/MutableByteStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 366
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* byteFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/LazyByteIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.ByteArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/ByteIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/ByteArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  byteFunction  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/MutableByteStack;
    MethodParameters:
              Name  Flags
      byteFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 372
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* byteFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      byteFunction  
      target        

  public org.eclipse.collections.api.stack.primitive.MutableCharStack 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/MutableCharStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 378
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* charFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/LazyCharIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.CharArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/CharIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/CharArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  charFunction  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/MutableCharStack;
    MethodParameters:
              Name  Flags
      charFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 384
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* charFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      charFunction  
      target        

  public org.eclipse.collections.api.stack.primitive.MutableDoubleStack 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/MutableDoubleStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 390
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* doubleFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/LazyDoubleIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.DoubleArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/DoubleArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  doubleFunction  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/MutableDoubleStack;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 396
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* doubleFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            0    1     2          target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;TR;)TR;
    MethodParameters:
                Name  Flags
      doubleFunction  
      target          

  public org.eclipse.collections.api.stack.primitive.MutableFloatStack 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/MutableFloatStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 402
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* floatFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/LazyFloatIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.FloatArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/FloatIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/FloatArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  floatFunction  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/MutableFloatStack;
    MethodParameters:
               Name  Flags
      floatFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 408
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* floatFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            0    1     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;TR;)TR;
    MethodParameters:
               Name  Flags
      floatFunction  
      target         

  public org.eclipse.collections.api.stack.primitive.MutableIntStack 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/MutableIntStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 414
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* intFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/LazyIntIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.IntArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/IntArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  intFunction  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/MutableIntStack;
    MethodParameters:
             Name  Flags
      intFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 420
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* intFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            0    1     2       target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;TR;)TR;
    MethodParameters:
             Name  Flags
      intFunction  
      target       

  public org.eclipse.collections.api.stack.primitive.MutableLongStack 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/MutableLongStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 426
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* longFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LazyLongIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.LongArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/LongArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  longFunction  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/MutableLongStack;
    MethodParameters:
              Name  Flags
      longFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 432
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* longFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      longFunction  
      target        

  public org.eclipse.collections.api.stack.primitive.MutableShortStack 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/MutableShortStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 438
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* shortFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/LazyShortIterable;
            invokestatic org.eclipse.collections.impl.stack.mutable.primitive.ShortArrayStack.newStackFromTopToBottom:(Lorg/eclipse/collections/api/ShortIterable;)Lorg/eclipse/collections/impl/stack/mutable/primitive/ShortArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  shortFunction  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/MutableShortStack;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 444
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* shortFunction */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
            0    1     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;TR;)TR;
    MethodParameters:
               Name  Flags
      shortFunction  
      target         

  public <V, R extends java.util.Collection<V>> R collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 450
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <P, V> org.eclipse.collections.impl.stack.mutable.ArrayStack<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/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 456
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.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;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <V> org.eclipse.collections.impl.stack.mutable.ArrayStack<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/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 462
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.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;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V, R extends java.util.Collection<V>> R 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;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.util.Collection target
         0: .line 468
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* function */
            aload 3 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;>;
            0    1     3     target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public <P, V, R extends java.util.Collection<V>> R 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;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 474
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1          function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2         parameter  TP;
            0    1     3  targetCollection  TR;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      function          
      parameter         
      targetCollection  

  public <V> org.eclipse.collections.impl.stack.mutable.ArrayStack<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/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 480
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.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;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends java.util.Collection<V>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 486
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.impl.stack.mutable.ArrayStack<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 492
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.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;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.impl.stack.mutable.ArrayStack<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/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 498
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            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.mutable.ArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <R extends java.util.Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 504
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <S> org.eclipse.collections.impl.stack.mutable.ArrayStack<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Class clazz
         0: .line 510
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* clazz */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <P, R extends java.util.Collection<T>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 516
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2         parameter  TP;
            0    1     3  targetCollection  TR;
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public org.eclipse.collections.impl.stack.mutable.ArrayStack<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 522
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.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;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 528
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.impl.stack.mutable.ArrayStack<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/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 534
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            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.mutable.ArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, R extends java.util.Collection<T>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 540
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2         parameter  TP;
            0    1     3  targetCollection  TR;
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 546
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 552
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public java.util.Optional<T> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 558
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detectOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> java.util.Optional<T> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 564
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detectWithOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 570
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 576
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.detectWithIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
            0    1     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public org.eclipse.collections.api.partition.stack.PartitionMutableStack<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/PartitionMutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 582
            new org.eclipse.collections.impl.partition.stack.PartitionArrayStack
            dup
            invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack.<init>:()V
            astore 2 /* partitionMutableStack */
        start local 2 // org.eclipse.collections.impl.partition.stack.PartitionArrayStack partitionMutableStack
         1: .line 583
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            new org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* partitionMutableStack */
            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
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 584
            aload 2 /* partitionMutableStack */
            areturn
        end local 2 // org.eclipse.collections.impl.partition.stack.PartitionArrayStack partitionMutableStack
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/PartitionMutableStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.stack.PartitionMutableStack<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/PartitionMutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 590
            new org.eclipse.collections.impl.partition.stack.PartitionArrayStack
            dup
            invokespecial org.eclipse.collections.impl.partition.stack.PartitionArrayStack.<init>:()V
            astore 3 /* partitionMutableStack */
        start local 3 // org.eclipse.collections.impl.partition.stack.PartitionArrayStack partitionMutableStack
         1: .line 591
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            new org.eclipse.collections.impl.partition.stack.PartitionArrayStack$PartitionPredicate2Procedure
            dup
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* partitionMutableStack */
            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
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 592
            aload 3 /* partitionMutableStack */
            areturn
        end local 3 // org.eclipse.collections.impl.partition.stack.PartitionArrayStack partitionMutableStack
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/PartitionMutableStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.impl.stack.mutable.ArrayStack<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Iterable that
         0: .line 598
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* that */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  that  Ljava/lang/Iterable<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    MethodParameters:
      Name  Flags
      that  

  public <S, R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<T, S>>> R zip(java.lang.Iterable<S>, );
    descriptor: (Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Iterable that
        start local 2 // java.util.Collection target
         0: .line 604
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* that */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1    that  Ljava/lang/Iterable<TS;>;
            0    1     2  target  TR;
    Signature: <S:Ljava/lang/Object;R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;>(Ljava/lang/Iterable<TS;>;TR;)TR;
    MethodParameters:
        Name  Flags
      that    
      target  

  public org.eclipse.collections.impl.stack.mutable.ArrayStack<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 610
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iconst_1
            isub
            istore 1 /* maxIndex */
        start local 1 // int maxIndex
         1: .line 611
            iconst_0
            iload 1 /* maxIndex */
            invokestatic org.eclipse.collections.impl.list.Interval.fromTo:(II)Lorg/eclipse/collections/impl/list/Interval;
            astore 2 /* indices */
        start local 2 // org.eclipse.collections.impl.list.Interval indices
         2: .line 613
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 2 /* indices */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            invokeinterface org.eclipse.collections.api.LazyIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 2 // org.eclipse.collections.impl.list.Interval indices
        end local 1 // int maxIndex
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            1    3     1  maxIndex  I
            2    3     2   indices  Lorg/eclipse/collections/impl/list/Interval;
    Signature: ()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;

  public <R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>>> R zipWithIndex();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Collection target
         0: .line 619
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public int count(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 625
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.count:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 631
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.countWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)I
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 637
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 643
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.anySatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 649
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 655
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.allSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 661
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 667
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.noneSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 673
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  injectedValue  TIV;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public int injectInto(int, org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super T>);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction intObjectToIntFunction
         0: .line 679
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            iload 1 /* injectedValue */
            aload 2 /* intObjectToIntFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.injectInto:(ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
            ireturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction intObjectToIntFunction
        end local 1 // int injectedValue
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    1     0                    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1           injectedValue  I
            0    1     2  intObjectToIntFunction  Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;
    Signature: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;)I
    MethodParameters:
                        Name  Flags
      injectedValue           
      intObjectToIntFunction  

  public long injectInto(long, org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super T>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction longObjectToLongFunction
         0: .line 685
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            lload 1 /* injectedValue */
            aload 3 /* longObjectToLongFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.injectInto:(JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
            lreturn
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction longObjectToLongFunction
        end local 1 // long injectedValue
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    1     0                      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1             injectedValue  J
            0    1     3  longObjectToLongFunction  Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;)J
    MethodParameters:
                          Name  Flags
      injectedValue             
      longObjectToLongFunction  

  public double injectInto(double, org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T>);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction doubleObjectToDoubleFunction
         0: .line 691
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            dload 1 /* injectedValue */
            aload 3 /* doubleObjectToDoubleFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.injectInto:(DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
            dreturn
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction doubleObjectToDoubleFunction
        end local 1 // double injectedValue
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                          Name  Signature
            0    1     0                          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1                 injectedValue  D
            0    1     3  doubleObjectToDoubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;)D
    MethodParameters:
                              Name  Flags
      injectedValue                 
      doubleObjectToDoubleFunction  

  public float injectInto(float, org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T>);
    descriptor: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction floatObjectToFloatFunction
         0: .line 697
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            fload 1 /* injectedValue */
            aload 2 /* floatObjectToFloatFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.injectInto:(FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
            freturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction floatObjectToFloatFunction
        end local 1 // float injectedValue
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    1     0                        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1               injectedValue  F
            0    1     2  floatObjectToFloatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;
    Signature: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;)F
    MethodParameters:
                            Name  Flags
      injectedValue               
      floatObjectToFloatFunction  

  public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 703
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* intFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumOfInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)J
    MethodParameters:
             Name  Flags
      intFunction  

  public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 709
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* floatFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumOfFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)D
    MethodParameters:
               Name  Flags
      floatFunction  

  public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 715
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* longFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumOfLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)J
    MethodParameters:
              Name  Flags
      longFunction  

  public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 721
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* doubleFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumOfDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)D
    MethodParameters:
                Name  Flags
      doubleFunction  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<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/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 727
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    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/MutableObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<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/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 733
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    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/MutableObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<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/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 739
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    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/MutableObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<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/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 745
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* groupBy */
            aload 2 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    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/MutableObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public T max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 751
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.max:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()TT;

  public T max(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
         0: .line 757
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.max:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> T maxBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 763
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.maxBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)TT;
    MethodParameters:
          Name  Flags
      function  

  public T min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 769
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.min:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()TT;

  public T min(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
         0: .line 775
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.min:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 781
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.minBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)TT;
    MethodParameters:
          Name  Flags
      function  

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 787
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.makeString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.String separator
         0: .line 793
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* separator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  separator  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 799
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1      start  Ljava/lang/String;
            0    1     2  separator  Ljava/lang/String;
            0    1     3        end  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Appendable appendable
         0: .line 805
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* appendable */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.appendString:(Ljava/lang/Appendable;)V
         1: .line 806
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 811
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* appendable */
            aload 2 /* separator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 812
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2   separator  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 817
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 818
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2       start  Ljava/lang/String;
            0    2     3   separator  Ljava/lang/String;
            0    2     4         end  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public <V> org.eclipse.collections.api.multimap.list.MutableListMultimap<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/MutableListMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 823
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.list.FastListMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.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
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableListMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R 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/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 829
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V> org.eclipse.collections.api.multimap.list.MutableListMultimap<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/MutableListMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 835
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.list.FastListMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.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
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableListMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R 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/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 841
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V> org.eclipse.collections.api.map.MutableMap<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/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 847
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableMap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.map.MutableMap<V, T>> R 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/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMap target
         0: .line 853
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            aload 2 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 2 // org.eclipse.collections.api.map.MutableMap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/map/MutableMap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int size
         0: .line 859
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            iload 1 /* size */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.chunk:(I)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TT;>;>;
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.collections.impl.stack.mutable.ArrayStack<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 865
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 866
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/impl/stack/mutable/ArrayStack<TT;>;
    MethodParameters:
           Name  Flags
      procedure  

  public void forEach(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=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 872
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 873
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    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=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 878
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.reverseForEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 879
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 884
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* procedure */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 885
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    2     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 890
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* objectIntProcedure */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 891
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <R extends java.util.Collection<T>> R into();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Collection target
         0: .line 896
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* target */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.into:(Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.list.MutableList<T> toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 902
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toList:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 908
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedList:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> toSortedList(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
         0: .line 914
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> toSortedListBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 920
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedListBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.set.MutableSet<T> toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 926
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSet:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 932
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedSet:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
         0: .line 938
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 944
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.stack.mutable.ArrayStack.newStackFromTopToBottom:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<TT;>;

  public org.eclipse.collections.api.stack.ImmutableStack<T> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/stack/ImmutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 950
            getstatic org.eclipse.collections.impl.factory.Stacks.immutable:Lorg/eclipse/collections/api/factory/stack/ImmutableStackFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokeinterface org.eclipse.collections.api.factory.stack.ImmutableStackFactory.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/ImmutableStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/ImmutableStack<TT;>;

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 956
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedSetBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.MutableBag<T> toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 962
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toBag:()Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/bag/MutableBag<TT;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 968
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedBag:()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
         0: .line 974
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 980
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* function */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedBagBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <NK, NV> org.eclipse.collections.api.map.MutableMap<NK, NV> toMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 986
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/MutableMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 992
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(java.util.Comparator<? super NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.util.Comparator comparator
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 998
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* comparator */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedMap:(Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1     comparator  Ljava/util/Comparator<-TNK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Ljava/util/Comparator<-TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      comparator     
      keyFunction    
      valueFunction  

  public <KK extends java.lang.Comparable<? super KK>, NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMapBy(org.eclipse.collections.api.block.function.Function<? super NK, KK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function sortBy
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1004
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* sortBy */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toSortedMapBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // org.eclipse.collections.api.block.function.Function sortBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1         sortBy  Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <KK::Ljava/lang/Comparable<-TKK;>;NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      sortBy         
      keyFunction    
      valueFunction  

  public org.eclipse.collections.api.LazyIterable<T> asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1010
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.adapt:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TT;>;

  public org.eclipse.collections.api.stack.MutableStack<T> asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1016
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.stack.mutable.UnmodifiableStack.of:(Lorg/eclipse/collections/api/stack/MutableStack;)Lorg/eclipse/collections/impl/stack/mutable/UnmodifiableStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<TT;>;

  public org.eclipse.collections.api.stack.MutableStack<T> asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1022
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.stack.mutable.SynchronizedStack.of:(Lorg/eclipse/collections/api/stack/MutableStack;)Lorg/eclipse/collections/impl/stack/mutable/SynchronizedStack;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<TT;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1028
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object[] a
         0: .line 1034
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            aload 1 /* a */
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1040
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object o
         0: .line 1046
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 1048
            iconst_1
            ireturn
         2: .line 1050
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof org.eclipse.collections.api.stack.StackIterable
            ifne 4
         3: .line 1052
            iconst_0
            ireturn
         4: .line 1055
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.eclipse.collections.api.stack.StackIterable
            astore 2 /* that */
        start local 2 // org.eclipse.collections.api.stack.StackIterable that
         5: .line 1057
            aload 2 /* that */
            instanceof org.eclipse.collections.impl.stack.mutable.ArrayStack
            ifeq 7
         6: .line 1059
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 2 /* that */
            checkcast org.eclipse.collections.impl.stack.mutable.ArrayStack
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.equals:(Ljava/lang/Object;)Z
            ireturn
         7: .line 1061
      StackMap locals: org.eclipse.collections.api.stack.StackIterable
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.iterator:()Ljava/util/Iterator;
            astore 3 /* thisIterator */
        start local 3 // java.util.Iterator thisIterator
         8: .line 1062
            aload 2 /* that */
            invokeinterface org.eclipse.collections.api.stack.StackIterable.iterator:()Ljava/util/Iterator;
            astore 4 /* thatIterator */
        start local 4 // java.util.Iterator thatIterator
         9: .line 1063
            goto 12
        10: .line 1065
      StackMap locals: java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 3 /* thisIterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            aload 4 /* thatIterator */
            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 12
        11: .line 1067
            iconst_0
            ireturn
        12: .line 1063
      StackMap locals:
      StackMap stack:
            aload 3 /* thisIterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 13
            aload 4 /* thatIterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        13: .line 1070
      StackMap locals:
      StackMap stack:
            aload 3 /* thisIterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
            aload 4 /* thatIterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        14: iconst_0
            ireturn
        end local 4 // java.util.Iterator thatIterator
        end local 3 // java.util.Iterator thisIterator
        end local 2 // org.eclipse.collections.api.stack.StackIterable that
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0   15     1             o  Ljava/lang/Object;
            5   15     2          that  Lorg/eclipse/collections/api/stack/StackIterable<*>;
            8   15     3  thisIterator  Ljava/util/Iterator<TT;>;
            9   15     4  thatIterator  Ljava/util/Iterator<*>;
    MethodParameters:
      Name  Flags
      o     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1076
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            ldc "["
            ldc ", "
            ldc "]"
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1082
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 1083
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 1085
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.get:(I)Ljava/lang/Object;
            astore 3 /* each */
        start local 3 // java.lang.Object each
         4: .line 1086
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 3 /* each */
            ifnonnull 5
            iconst_0
            goto 6
      StackMap locals: org.eclipse.collections.impl.stack.mutable.ArrayStack int int java.lang.Object
      StackMap stack: int
         5: aload 3 /* each */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.stack.mutable.ArrayStack int int java.lang.Object
      StackMap stack: int int
         6: iadd
            istore 1 /* hashCode */
        end local 3 // java.lang.Object each
         7: .line 1083
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            ifge 3
        end local 2 // int i
         9: .line 1088
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            1   10     1  hashCode  I
            2    9     2         i  I
            4    7     3      each  TT;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.io.ObjectOutput out
         0: .line 1094
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 1095
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.asReversed:()Lorg/eclipse/collections/impl/lazy/ReverseIterable;
            invokevirtual org.eclipse.collections.impl.lazy.ReverseIterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.eclipse.collections.impl.stack.mutable.ArrayStack java.io.ObjectOutput top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* each */
        start local 2 // java.lang.Object each
         3: .line 1097
            aload 1 /* out */
            aload 2 /* each */
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object each
         4: .line 1095
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 1099
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    6     1   out  Ljava/io/ObjectOutput;
            3    4     2  each  TT;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.io.ObjectInput in
         0: .line 1104
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 1105
            iload 2 /* size */
            anewarray java.lang.Object
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         2: .line 1106
            iload 2 /* size */
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 1108
      StackMap locals: int java.lang.Object[] int
      StackMap stack:
            aload 3 /* array */
            iload 4 /* i */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            aastore
         5: .line 1106
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            ifge 4
        end local 4 // int i
         7: .line 1110
            aload 0 /* this */
            aload 3 /* array */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newListWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            putfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
         8: .line 1111
            return
        end local 3 // java.lang.Object[] array
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    9     1     in  Ljava/io/ObjectInput;
            1    9     2   size  I
            2    9     3  array  [Ljava/lang/Object;
            3    7     4      i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  private void checkSizeLessThanCount(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
         0: .line 1115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 1 /* count */
            if_icmpge 2
         1: .line 1117
            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 /* count */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " Size = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.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: .line 1119
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int index
         0: .line 1123
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 1 /* index */
            if_icmpgt 2
         1: .line 1125
            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 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " Size = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.stack.mutable.ArrayStack.delegate:Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.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: .line 1127
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int count
         0: .line 1131
            iload 1 /* count */
            ifge 2
         1: .line 1133
            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 /* count */
            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: .line 1135
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
            0    3     1  count  I
    MethodParameters:
       Name  Flags
      count  

  public <K, V> org.eclipse.collections.api.map.MutableMap<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/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
         0: .line 1140
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 1141
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* mutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMap;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.mutable.ArrayStack.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1142
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableMap<TK;TV;>;
    MethodParameters:
                    Name  Flags
      groupBy             
      zeroValueFactory    
      mutatingAggregator  

  public <K, V> org.eclipse.collections.api.map.MutableMap<K, V> aggregateBy(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.function.Function2<? super V, ? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
         0: .line 1148
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 1149
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* nonMutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMap;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)V
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1150
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        end local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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  nonMutatingAggregator  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TT;+TV;>;
            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/function/Function2<-TV;-TT;+TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
    MethodParameters:
                       Name  Flags
      groupBy                
      zeroValueFactory       
      nonMutatingAggregator  

  public org.eclipse.collections.api.stack.MutableStack<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1156
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.stack.MutableStack<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1162
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/MutableStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.partition.stack.PartitionMutableStack<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/PartitionMutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1168
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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/PartitionMutableStack<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.stack.MutableStack<T> distinct();
    descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
         0: .line 1174
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<TT;>;
    Signature: ()Lorg/eclipse/collections/api/stack/MutableStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // java.lang.Object object
         0: .line 1180
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 1186
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
         0: .line 1191
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.ordered.OrderedIterable other
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int startIndex
        start local 2 // int endIndex
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 1197
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 2 // int endIndex
        end local 1 // int startIndex
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 1203
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    1     0                this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1209
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            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 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.stack.mutable.ArrayStack this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/stack/mutable/ArrayStack<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 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: .line 1
            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.mutable.ArrayStack.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            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: .line 1
            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.mutable.ArrayStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            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.mutable.ArrayStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            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.mutable.ArrayStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack 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/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            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.mutable.ArrayStack.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zipWithIndex:()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zipWithIndex:()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zipWithIndex:()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zipWithIndex:()Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableCharStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableCharStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableCharStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag countBy(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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokeinterface org.eclipse.collections.api.stack.MutableStack.countBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableIntStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableIntStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableIntStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableLongStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableLongStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableLongStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack 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/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableByteStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableByteStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableByteStack;
            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: .line 1
            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.mutable.ArrayStack.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableDoubleStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack 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/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableShortStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableShortStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableShortStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableFloatStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableFloatStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableFloatStack;
            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: .line 1
            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.mutable.ArrayStack.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack 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/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.distinct:()Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.distinct:()Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.stack.MutableStack.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.stack.MutableStack.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/MutableStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable 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/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.stack.MutableStack.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            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.mutable.ArrayStack.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            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.function.Function2
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableBooleanStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableBooleanStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/stack/primitive/MutableBooleanStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.stack.MutableStack collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/stack/MutableStack;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/stack/mutable/ArrayStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag countByWith(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/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.stack.MutableStack.countByWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            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: .line 1
            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.mutable.ArrayStack.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/MutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
            invokeinterface org.eclipse.collections.api.stack.MutableStack.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
            invokeinterface org.eclipse.collections.api.stack.MutableStack.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/stack/MutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            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: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.stack.mutable.ArrayStack.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/stack/PartitionMutableStack;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/stack/MutableStack<TT;>;Ljava/io/Externalizable;
SourceFile: "ArrayStack.java"
InnerClasses:
  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