public class org.eclipse.collections.impl.list.mutable.FastList<T> extends org.eclipse.collections.impl.list.mutable.AbstractMutableList<T> implements java.io.Externalizable, java.util.RandomAccess, org.eclipse.collections.impl.parallel.BatchIterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.list.mutable.FastList
  super_class: org.eclipse.collections.impl.list.mutable.AbstractMutableList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final java.lang.Object[] DEFAULT_SIZED_EMPTY_ARRAY;
    descriptor: [Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.Object[] ZERO_SIZED_ARRAY;
    descriptor: [Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int MAXIMUM_ARRAY_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483639

  protected int size;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected transient T[] items;
    descriptor: [Ljava/lang/Object;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT
    Signature: [TT;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 136
            iconst_0
            anewarray java.lang.Object
            putstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
         1: .line 137
            iconst_0
            anewarray java.lang.Object
            putstatic org.eclipse.collections.impl.list.mutable.FastList.ZERO_SIZED_ARRAY:[Ljava/lang/Object;
         2: .line 138
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 143
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
         1: .line 141
            aload 0 /* this */
            getstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 145
            return
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int initialCapacity
         0: .line 147
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
         1: .line 141
            aload 0 /* this */
            getstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 149
            iload 1 /* initialCapacity */
            ifge 4
         3: .line 151
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Expected initial capacity is greater than or equal to 0. Was: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* initialCapacity */
            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
         4: .line 153
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ifne 5
            getstatic org.eclipse.collections.impl.list.mutable.FastList.ZERO_SIZED_ARRAY:[Ljava/lang/Object;
            goto 6
      StackMap locals:
      StackMap stack: org.eclipse.collections.impl.list.mutable.FastList
         5: iload 1 /* initialCapacity */
            anewarray java.lang.Object
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int
      StackMap stack: org.eclipse.collections.impl.list.mutable.FastList java.lang.Object[]
         6: putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         7: .line 154
            return
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  protected void <init>();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] array
         0: .line 158
            aload 0 /* this */
            aload 1 /* array */
            arraylength
            aload 1 /* array */
            invokespecial org.eclipse.collections.impl.list.mutable.FastList.<init>:(I[Ljava/lang/Object;)V
         1: .line 159
            return
        end local 1 // java.lang.Object[] array
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1  array  [Ljava/lang/Object;
    Signature: ([TT;)V
    MethodParameters:
       Name  Flags
      array  

  protected void <init>(int, );
    descriptor: (I[Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int size
        start local 2 // java.lang.Object[] array
         0: .line 161
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
         1: .line 141
            aload 0 /* this */
            getstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 163
            aload 0 /* this */
            iload 1 /* size */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         3: .line 164
            aload 0 /* this */
            aload 2 /* array */
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         4: .line 165
            return
        end local 2 // java.lang.Object[] array
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1   size  I
            0    5     2  array  [Ljava/lang/Object;
    Signature: (I[TT;)V
    MethodParameters:
       Name  Flags
      size   
      array  

  public void <init>(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
         0: .line 167
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.<init>:()V
         1: .line 141
            aload 0 /* this */
            getstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 169
            aload 0 /* this */
            aload 1 /* source */
            invokeinterface java.util.Collection.toArray:()[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         3: .line 170
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         4: .line 171
            return
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1  source  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)V
    MethodParameters:
        Name  Flags
      source  

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

  public static <E> org.eclipse.collections.impl.list.mutable.FastList<E> wrapCopy(E[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.lang.Object[] array
         0: .line 180
            aload 0 /* array */
            arraylength
            anewarray java.lang.Object
            astore 1 /* newArray */
        start local 1 // java.lang.Object[] newArray
         1: .line 181
            aload 0 /* array */
            iconst_0
            aload 1 /* newArray */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 182
            new org.eclipse.collections.impl.list.mutable.FastList
            dup
            aload 1 /* newArray */
            invokespecial org.eclipse.collections.impl.list.mutable.FastList.<init>:([Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object[] newArray
        end local 0 // java.lang.Object[] array
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0     array  [Ljava/lang/Object;
            1    3     1  newArray  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)Lorg/eclipse/collections/impl/list/mutable/FastList<TE;>;
    MethodParameters:
       Name  Flags
      array  

  public static <E> org.eclipse.collections.impl.list.mutable.FastList<E> newList(int);
    descriptor: (I)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int initialCapacity
         0: .line 187
            new org.eclipse.collections.impl.list.mutable.FastList
            dup
            iload 0 /* initialCapacity */
            invokespecial org.eclipse.collections.impl.list.mutable.FastList.<init>:(I)V
            areturn
        end local 0 // int initialCapacity
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0  initialCapacity  I
    Signature: <E:Ljava/lang/Object;>(I)Lorg/eclipse/collections/impl/list/mutable/FastList<TE;>;
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public static <E> org.eclipse.collections.impl.list.mutable.FastList<E> newList(java.lang.Iterable<? extends E>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Iterable source
         0: .line 192
            aload 0 /* source */
            invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;)[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newListWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // java.lang.Iterable source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Ljava/lang/Iterable<+TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/lang/Iterable<+TE;>;)Lorg/eclipse/collections/impl/list/mutable/FastList<TE;>;
    MethodParameters:
        Name  Flags
      source  

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

  public static <E> org.eclipse.collections.impl.list.mutable.FastList<E> newWithNValues(int, org.eclipse.collections.api.block.function.Function0<? extends E>);
    descriptor: (ILorg/eclipse/collections/api/block/function/Function0;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // int size
        start local 1 // org.eclipse.collections.api.block.function.Function0 factory
         0: .line 213
            iload 0 /* size */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* newFastList */
        start local 2 // org.eclipse.collections.impl.list.mutable.FastList newFastList
         1: .line 214
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 216
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int
      StackMap stack:
            aload 2 /* newFastList */
            aload 1 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         4: .line 214
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 0 /* size */
            if_icmplt 3
        end local 3 // int i
         6: .line 218
            aload 2 /* newFastList */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.FastList newFastList
        end local 1 // org.eclipse.collections.api.block.function.Function0 factory
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         size  I
            0    7     1      factory  Lorg/eclipse/collections/api/block/function/Function0<+TE;>;
            1    7     2  newFastList  Lorg/eclipse/collections/impl/list/mutable/FastList<TE;>;
            2    6     3            i  I
    Signature: <E:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/Function0<+TE;>;)Lorg/eclipse/collections/impl/list/mutable/FastList<TE;>;
    MethodParameters:
         Name  Flags
      size     
      factory  

  public org.eclipse.collections.impl.list.mutable.FastList<T> clone();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 224
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.clone:()Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            astore 1 /* result */
        start local 1 // org.eclipse.collections.impl.list.mutable.FastList result
         1: .line 225
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            ifle 3
         2: .line 227
            aload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         3: .line 229
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.collections.impl.list.mutable.FastList result
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            1    4     1  result  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 235
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
         1: .line 236
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         2: .line 237
            return
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  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=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int from
        start local 2 // int to
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 242
            iload 1 /* from */
            iload 2 /* to */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* from */
            iload 2 /* to */
            aload 3 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithoutChecks:([Ljava/lang/Object;IILorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 244
            return
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 2 // int to
        end local 1 // int from
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1       from  I
            0    3     2         to  I
            0    3     3  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (IILorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      from       
      to         
      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=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int from
        start local 2 // int to
        start local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 249
            iload 1 /* from */
            iload 2 /* to */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 250
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* from */
            iload 2 /* to */
            aload 3 /* objectIntProcedure */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithIndexWithoutChecks:([Ljava/lang/Object;IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 251
            return
        end local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 2 // int to
        end local 1 // int from
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1                from  I
            0    3     2                  to  I
            0    3     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
      from                
      to                  
      objectIntProcedure  

  public void batchForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T>, int, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        start local 2 // int sectionIndex
        start local 3 // int sectionCount
         0: .line 256
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 2 /* sectionIndex */
            iload 3 /* sectionCount */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.batchForEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;[Ljava/lang/Object;III)V
         1: .line 257
            return
        end local 3 // int sectionCount
        end local 2 // int sectionIndex
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1     procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            0    2     2  sectionIndex  I
            0    2     3  sectionCount  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;II)V
    MethodParameters:
              Name  Flags
      procedure     
      sectionIndex  
      sectionCount  

  public int getBatchCount(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int batchSize
         0: .line 262
            iconst_1
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 1 /* batchSize */
            idiv
            invokestatic java.lang.Math.max:(II)I
            ireturn
        end local 1 // int batchSize
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  batchSize  I
    MethodParameters:
           Name  Flags
      batchSize  

  public <E> E[] toArray(E[], int, int, );
    descriptor: ([Ljava/lang/Object;III)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] array
        start local 2 // int sourceFromIndex
        start local 3 // int sourceToIndex
        start local 4 // int destinationIndex
         0: .line 267
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* sourceFromIndex */
            aload 1 /* array */
            iload 4 /* destinationIndex */
            iload 3 /* sourceToIndex */
            iload 2 /* sourceFromIndex */
            isub
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 268
            aload 1 /* array */
            areturn
        end local 4 // int destinationIndex
        end local 3 // int sourceToIndex
        end local 2 // int sourceFromIndex
        end local 1 // java.lang.Object[] array
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1             array  [Ljava/lang/Object;
            0    2     2   sourceFromIndex  I
            0    2     3     sourceToIndex  I
            0    2     4  destinationIndex  I
    Signature: <E:Ljava/lang/Object;>([TE;III)[TE;
    MethodParameters:
                  Name  Flags
      array             
      sourceFromIndex   
      sourceToIndex     
      destinationIndex  

  public <E> E[] toArray(int, );
    descriptor: (II)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int sourceFromIndex
        start local 2 // int sourceToIndex
         0: .line 273
            aload 0 /* this */
            iload 2 /* sourceToIndex */
            iload 1 /* sourceFromIndex */
            isub
            iconst_1
            iadd
            anewarray java.lang.Object
            iload 1 /* sourceFromIndex */
            iload 2 /* sourceToIndex */
            iconst_0
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toArray:([Ljava/lang/Object;III)[Ljava/lang/Object;
            areturn
        end local 2 // int sourceToIndex
        end local 1 // int sourceFromIndex
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  sourceFromIndex  I
            0    1     2    sourceToIndex  I
    Signature: <E:Ljava/lang/Object;>(II)[TE;
    MethodParameters:
                 Name  Flags
      sourceFromIndex  
      sourceToIndex    

  public void sort(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Comparator comparator
         0: .line 284
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* comparator */
            invokestatic java.util.Arrays.sort:([Ljava/lang/Object;IILjava/util/Comparator;)V
         1: .line 285
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)V
    MethodParameters:
            Name  Flags
      comparator  

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

  public org.eclipse.collections.impl.list.mutable.FastList<T> sortThis();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 296
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.mutable.AbstractMutableList.sortThis:()Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public org.eclipse.collections.impl.list.mutable.FastList<T> reverseThis();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 302
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.reverse:([Ljava/lang/Object;I)V
         1: .line 303
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public boolean addAll(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
         0: .line 309
            aload 1 /* source */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 2
         1: .line 311
            iconst_0
            ireturn
         2: .line 314
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lorg/eclipse/collections/impl/list/mutable/FastList;
            if_acmpne 5
         3: .line 316
            aload 0 /* this */
            aload 1 /* source */
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllFastList:(Lorg/eclipse/collections/impl/list/mutable/FastList;)V
         4: .line 317
            goto 12
         5: .line 318
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Ljava/util/ArrayList;
            if_acmpne 8
         6: .line 320
            aload 0 /* this */
            aload 1 /* source */
            checkcast java.util.ArrayList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllArrayList:(Ljava/util/ArrayList;)V
         7: .line 321
            goto 12
         8: .line 322
      StackMap locals:
      StackMap stack:
            aload 1 /* source */
            instanceof java.util.List
            ifeq 11
            aload 1 /* source */
            instanceof java.util.RandomAccess
            ifeq 11
         9: .line 324
            aload 0 /* this */
            aload 1 /* source */
            checkcast java.util.List
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllRandomAccessList:(Ljava/util/List;)V
        10: .line 325
            goto 12
        11: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllCollection:(Ljava/util/Collection;)V
        12: .line 331
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0   13     1  source  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)Z
    MethodParameters:
        Name  Flags
      source  

  private void addAllFastList(org.eclipse.collections.impl.list.mutable.FastList<T>);
    descriptor: (Lorg/eclipse/collections/impl/list/mutable/FastList;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.impl.list.mutable.FastList source
         0: .line 336
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacityForAddAll:(Ljava/util/Collection;)I
            istore 2 /* newSize */
        start local 2 // int newSize
         1: .line 337
            aload 1 /* source */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 338
            aload 0 /* this */
            iload 2 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         3: .line 339
            return
        end local 2 // int newSize
        end local 1 // org.eclipse.collections.impl.list.mutable.FastList source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1   source  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            1    4     2  newSize  I
    Signature: (Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;)V
    MethodParameters:
        Name  Flags
      source  

  private void addAllArrayList(java.util.ArrayList<T>);
    descriptor: (Ljava/util/ArrayList;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.ArrayList source
         0: .line 343
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacityForAddAll:(Ljava/util/Collection;)I
            istore 2 /* newSize */
        start local 2 // int newSize
         1: .line 344
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* source */
            invokevirtual java.util.ArrayList.size:()I
            invokestatic org.eclipse.collections.impl.utility.ArrayListIterate.toArray:(Ljava/util/ArrayList;[Ljava/lang/Object;II)V
         2: .line 345
            aload 0 /* this */
            iload 2 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         3: .line 346
            return
        end local 2 // int newSize
        end local 1 // java.util.ArrayList source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1   source  Ljava/util/ArrayList<TT;>;
            1    4     2  newSize  I
    Signature: (Ljava/util/ArrayList<TT;>;)V
    MethodParameters:
        Name  Flags
      source  

  private void addAllRandomAccessList(java.util.List<T>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.List source
         0: .line 350
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacityForAddAll:(Ljava/util/Collection;)I
            istore 2 /* newSize */
        start local 2 // int newSize
         1: .line 351
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* source */
            invokeinterface java.util.List.size:()I
            invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.toArray:(Ljava/util/List;[Ljava/lang/Object;II)V
         2: .line 352
            aload 0 /* this */
            iload 2 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         3: .line 353
            return
        end local 2 // int newSize
        end local 1 // java.util.List source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1   source  Ljava/util/List<TT;>;
            1    4     2  newSize  I
    Signature: (Ljava/util/List<TT;>;)V
    MethodParameters:
        Name  Flags
      source  

  private void addAllCollection(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
         0: .line 357
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* source */
            invokeinterface java.util.Collection.size:()I
            iadd
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         1: .line 358
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEachWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 359
            return
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1  source  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)V
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
         0: .line 364
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] source
         0: .line 370
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.allSatisfyWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object[] source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  source  [Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      source  

  public <E> E[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] array
         0: .line 376
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpge 2
         1: .line 378
            aload 1 /* array */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 1 /* array */
         2: .line 380
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 1 /* array */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 381
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmple 5
         4: .line 383
            aload 1 /* array */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aconst_null
            aastore
         5: .line 385
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 1 // java.lang.Object[] array
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  array  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)[TE;
    MethodParameters:
       Name  Flags
      array  

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

  public T[] toTypedArray(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Class clazz
         0: .line 396
            aload 1 /* clazz */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 2 /* array */
        start local 2 // java.lang.Object[] array
         1: .line 397
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 2 /* array */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 398
            aload 2 /* array */
            areturn
        end local 2 // java.lang.Object[] array
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1  clazz  Ljava/lang/Class<TT;>;
            1    3     2  array  [Ljava/lang/Object;
    Signature: (Ljava/lang/Class<TT;>;)[TT;
    MethodParameters:
       Name  Flags
      clazz  

  private void throwOutOfBounds(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
         0: .line 403
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.newIndexOutOfBoundsException:(I)Ljava/lang/IndexOutOfBoundsException;
            athrow
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public T set(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 409
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.get:(I)Ljava/lang/Object;
            astore 3 /* previous */
        start local 3 // java.lang.Object previous
         1: .line 410
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* element */
            aastore
         2: .line 411
            aload 3 /* previous */
            areturn
        end local 3 // java.lang.Object previous
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1     index  I
            0    3     2   element  TT;
            1    3     3  previous  TT;
    Signature: (ITT;)TT;
    MethodParameters:
         Name  Flags
      index    
      element  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object object
         0: .line 417
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* object */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.indexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object object
         0: .line 423
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* object */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.lastIndexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public java.util.Spliterator<T> spliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 432
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            bipush 16
            invokestatic java.util.Spliterators.spliterator:([Ljava/lang/Object;III)Ljava/util/Spliterator;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Ljava/util/Spliterator<TT;>;

  public void trimToSize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 437
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            if_icmpge 2
         1: .line 439
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.transferItemsToNewArrayWithCapacity:(I)V
         2: .line 441
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public boolean trimToSizeIfGreaterThanPercent(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // double loadFactor
         0: .line 448
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            i2d
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            i2d
            ddiv
            dsub
            dstore 3 /* excessCapacity */
        start local 3 // double excessCapacity
         1: .line 449
            dload 3 /* excessCapacity */
            dload 1 /* loadFactor */
            dcmpl
            ifle 4
         2: .line 451
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.trimToSize:()V
         3: .line 452
            iconst_1
            ireturn
         4: .line 454
      StackMap locals: double
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // double excessCapacity
        end local 1 // double loadFactor
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1      loadFactor  D
            1    5     3  excessCapacity  D
    MethodParameters:
            Name  Flags
      loadFactor  

  private void ensureCapacityForAdd();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            getstatic org.eclipse.collections.impl.list.mutable.FastList.DEFAULT_SIZED_EMPTY_ARRAY:[Ljava/lang/Object;
            if_acmpne 3
         1: .line 461
            aload 0 /* this */
            bipush 10
            anewarray java.lang.Object
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 462
            goto 4
         3: .line 465
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.sizePlusFiftyPercent:(I)I
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.transferItemsToNewArrayWithCapacity:(I)V
         4: .line 467
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  private int ensureCapacityForAddAll(java.util.Collection<T>);
    descriptor: (Ljava/util/Collection;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
         0: .line 471
            aload 1 /* source */
            invokeinterface java.util.Collection.size:()I
            istore 2 /* sourceSize */
        start local 2 // int sourceSize
         1: .line 472
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 2 /* sourceSize */
            iadd
            istore 3 /* newSize */
        start local 3 // int newSize
         2: .line 473
            aload 0 /* this */
            iload 3 /* newSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         3: .line 474
            iload 3 /* newSize */
            ireturn
        end local 3 // int newSize
        end local 2 // int sourceSize
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1      source  Ljava/util/Collection<TT;>;
            1    4     2  sourceSize  I
            2    4     3     newSize  I
    Signature: (Ljava/util/Collection<TT;>;)I
    MethodParameters:
        Name  Flags
      source  

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int minCapacity
         0: .line 479
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            istore 2 /* oldCapacity */
        start local 2 // int oldCapacity
         1: .line 480
            iload 1 /* minCapacity */
            iload 2 /* oldCapacity */
            if_icmple 4
         2: .line 482
            aload 0 /* this */
            iload 2 /* oldCapacity */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.sizePlusFiftyPercent:(I)I
            iload 1 /* minCapacity */
            invokestatic java.lang.Math.max:(II)I
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 483
            aload 0 /* this */
            iload 3 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.transferItemsToNewArrayWithCapacity:(I)V
        end local 3 // int newCapacity
         4: .line 485
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int oldCapacity
        end local 1 // int minCapacity
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1  minCapacity  I
            1    5     2  oldCapacity  I
            3    4     3  newCapacity  I
    MethodParameters:
             Name  Flags
      minCapacity  

  private void transferItemsToNewArrayWithCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int newCapacity
         0: .line 489
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.copyItemsWithNewCapacity:(I)[Ljava/lang/Object;
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         1: .line 490
            return
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  private java.lang.Object[] copyItemsWithNewCapacity(int);
    descriptor: (I)[Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int newCapacity
         0: .line 494
            iload 1 /* newCapacity */
            anewarray java.lang.Object
            astore 2 /* newItems */
        start local 2 // java.lang.Object[] newItems
         1: .line 495
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newItems */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 1 /* newCapacity */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 496
            aload 2 /* newItems */
            areturn
        end local 2 // java.lang.Object[] newItems
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1  newCapacity  I
            1    3     2     newItems  [Ljava/lang/Object;
    MethodParameters:
             Name  Flags
      newCapacity  

  public org.eclipse.collections.impl.list.mutable.FastList<T> with(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
         0: .line 501
            aload 0 /* this */
            aload 1 /* element1 */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 502
            aload 0 /* this */
            aload 2 /* element2 */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 503
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object element2
        end local 1 // java.lang.Object element1
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1  element1  TT;
            0    3     2  element2  TT;
    Signature: (TT;TT;)Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  

  public org.eclipse.collections.impl.list.mutable.FastList<T> with(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
        start local 3 // java.lang.Object element3
         0: .line 508
            aload 0 /* this */
            aload 1 /* element1 */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 509
            aload 0 /* this */
            aload 2 /* element2 */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 510
            aload 0 /* this */
            aload 3 /* element3 */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         3: .line 511
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object element3
        end local 2 // java.lang.Object element2
        end local 1 // java.lang.Object element1
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1  element1  TT;
            0    4     2  element2  TT;
            0    4     3  element3  TT;
    Signature: (TT;TT;TT;)Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  
      element3  

  public org.eclipse.collections.impl.list.mutable.FastList<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] elements
         0: .line 516
            aload 0 /* this */
            aload 1 /* elements */
            iconst_0
            aload 1 /* elements */
            arraylength
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.withArrayCopy:([Ljava/lang/Object;II)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  elements  [Ljava/lang/Object;
    Signature: ([TT;)Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.list.mutable.FastList<T> withArrayCopy(T[], int, int);
    descriptor: ([Ljava/lang/Object;II)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object[] elements
        start local 2 // int begin
        start local 3 // int length
         0: .line 521
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* length */
            iadd
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         1: .line 522
            aload 1 /* elements */
            iload 2 /* begin */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 523
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* length */
            iadd
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         3: .line 524
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // int begin
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1  elements  [Ljava/lang/Object;
            0    4     2     begin  I
            0    4     3    length  I
    Signature: ([TT;II)Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    MethodParameters:
          Name  Flags
      elements  
      begin     
      length    

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 530
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.isEmpty:()Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aaload
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()TT;

  public T getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 536
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.isEmpty:()Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iconst_1
            isub
            aaload
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()TT;

  public <V> org.eclipse.collections.impl.multimap.list.FastListMultimap<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/impl/multimap/list/FastListMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 542
            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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.list.FastListMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/multimap/list/FastListMultimap<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 548
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.groupBy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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.impl.multimap.list.FastListMultimap<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/impl/multimap/list/FastListMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 554
            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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.list.FastListMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/multimap/list/FastListMultimap<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 562
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.groupByEach:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <K> org.eclipse.collections.api.map.MutableMap<K, T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>);
    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.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 568
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            checkcast org.eclipse.collections.api.map.MutableMap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
    Signature: <K:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <K, R extends org.eclipse.collections.api.map.MutableMapIterable<K, T>> R groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMapIterable target
         0: .line 574
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.groupByUniqueKey:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            areturn
        end local 2 // org.eclipse.collections.api.map.MutableMapIterable target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    1     2    target  TR;
    Signature: <K:Ljava/lang/Object;R::Lorg/eclipse/collections/api/map/MutableMapIterable<TK;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  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=7, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 580
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.appendString:(Lorg/eclipse/collections/api/list/ListIterable;[Ljava/lang/Object;ILjava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 581
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 org.eclipse.collections.api.list.MutableList<T> take(int);
    descriptor: (I)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.list.mutable.FastList this
        start local 1 // int count
         0: .line 586
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.take:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.MutableList<T> drop(int);
    descriptor: (I)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.list.mutable.FastList this
        start local 1 // int count
         0: .line 592
            aload 0 /* this */
            iload 1 /* count */
            invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.drop:(Ljava/util/List;I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.impl.partition.list.PartitionFastList<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 598
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.partition:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/partition/list/PartitionFastList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.impl.partition.list.PartitionFastList<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/impl/partition/list/PartitionFastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 604
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.partitionWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/partition/list/PartitionFastList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  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=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 610
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 612
      StackMap locals: int
      StackMap stack:
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         3: .line 610
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 2 // int i
         5: .line 614
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            1    5     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 618
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 6
         2: .line 620
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            astore 4 /* item */
        start local 4 // java.lang.Object item
         3: .line 621
            aload 1 /* predicate */
            aload 4 /* item */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 623
            aload 2 /* procedure */
            aload 4 /* item */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
        end local 4 // java.lang.Object item
         5: .line 618
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         7: .line 626
            return
        end local 2 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    8     2  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            1    7     3          i  I
            3    5     4       item  TT;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      predicate  
      procedure  

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 631
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* objectIntProcedure */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.forEachWithIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 632
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <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=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 637
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 639
      StackMap locals: int
      StackMap stack:
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 637
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 641
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    6     2  parameter  TP;
            1    5     3          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

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

  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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 652
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.select:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 658
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  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=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 target
         0: .line 667
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
            0    1     3     target  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  
      target     

  public org.eclipse.collections.impl.list.mutable.FastList<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 673
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 679
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.reject:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 685
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<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=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 target
         0: .line 694
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.rejectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
            0    1     3     target  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  
      target     

  public <P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> selectAndRejectWith(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/tuple/Twin;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 702
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectAndRejectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Twin;
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/tuple/Twin<Lorg/eclipse/collections/api/list/MutableList<TT;>;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.impl.list.mutable.FastList<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Class clazz
         0: .line 708
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* clazz */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectInstancesOf:([Ljava/lang/Object;ILjava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/impl/list/mutable/FastList<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 714
            iconst_0
            istore 2 /* currentFilledIndex */
        start local 2 // int currentFilledIndex
         1: .line 715
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 9
         3: .line 717
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            astore 4 /* item */
        start local 4 // java.lang.Object item
         4: .line 718
            aload 1 /* predicate */
            aload 4 /* item */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 8
         5: .line 721
            iload 2 /* currentFilledIndex */
            iload 3 /* i */
            if_icmpeq 7
         6: .line 723
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* currentFilledIndex */
            aload 4 /* item */
            aastore
         7: .line 725
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 2 /* currentFilledIndex */ 1
        end local 4 // java.lang.Object item
         8: .line 715
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 3 // int i
        10: .line 728
            iload 2 /* currentFilledIndex */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpge 11
            iconst_1
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 3 /* changed */
        start local 3 // boolean changed
        13: .line 729
            aload 0 /* this */
            iload 2 /* currentFilledIndex */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.wipeAndResetTheEnd:(I)V
        14: .line 730
            iload 3 /* changed */
            ireturn
        end local 3 // boolean changed
        end local 2 // int currentFilledIndex
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   15     0                this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0   15     1           predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1   15     2  currentFilledIndex  I
            2   10     3                   i  I
            4    8     4                item  TT;
           13   15     3             changed  Z
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  private void wipeAndResetTheEnd(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int newCurrentFilledIndex
         0: .line 735
            iload 1 /* newCurrentFilledIndex */
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 737
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aconst_null
            aastore
         3: .line 735
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 2 // int i
         5: .line 739
            aload 0 /* this */
            iload 1 /* newCurrentFilledIndex */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         6: .line 740
            return
        end local 1 // int newCurrentFilledIndex
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    7     0                   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  newCurrentFilledIndex  I
            1    5     2                      i  I
    MethodParameters:
                       Name  Flags
      newCurrentFilledIndex  

  public <P> boolean removeIfWith(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=6, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 745
            iconst_0
            istore 3 /* currentFilledIndex */
        start local 3 // int currentFilledIndex
         1: .line 746
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 9
         3: .line 748
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            astore 5 /* item */
        start local 5 // java.lang.Object item
         4: .line 749
            aload 1 /* predicate */
            aload 5 /* item */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 8
         5: .line 752
            iload 3 /* currentFilledIndex */
            iload 4 /* i */
            if_icmpeq 7
         6: .line 754
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* currentFilledIndex */
            aload 5 /* item */
            aastore
         7: .line 756
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 3 /* currentFilledIndex */ 1
        end local 5 // java.lang.Object item
         8: .line 746
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 4 // int i
        10: .line 759
            iload 3 /* currentFilledIndex */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpge 11
            iconst_1
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 4 /* changed */
        start local 4 // boolean changed
        13: .line 760
            aload 0 /* this */
            iload 3 /* currentFilledIndex */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.wipeAndResetTheEnd:(I)V
        14: .line 761
            iload 4 /* changed */
            ireturn
        end local 4 // boolean changed
        end local 3 // int currentFilledIndex
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   15     0                this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0   15     1           predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0   15     2           parameter  TP;
            1   15     3  currentFilledIndex  I
            2   10     4                   i  I
            4    8     5                item  TT;
           13   15     4             changed  Z
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <V> org.eclipse.collections.impl.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 767
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.primitive.MutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 773
            aload 0 /* this */
            aload 1 /* booleanFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableBooleanList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableBooleanList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 779
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 781
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* booleanFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.BooleanFunction.booleanValueOf:(Ljava/lang/Object;)Z
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableBooleanCollection.add:(Z)Z
            pop
         3: .line 779
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 783
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
            0    6     2           target  TR;
            1    5     3                i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R flatCollectBoolean(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.BooleanIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 790
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 792
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.BooleanIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableBooleanCollection.addAll:(Lorg/eclipse/collections/api/BooleanIterable;)Z
            pop
         3: .line 790
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 794
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/BooleanIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/BooleanIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 800
            aload 0 /* this */
            aload 1 /* byteFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableByteList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableByteList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 806
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 808
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* byteFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.ByteFunction.byteValueOf:(Ljava/lang/Object;)B
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableByteCollection.add:(B)Z
            pop
         3: .line 806
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 810
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
            0    6     2        target  TR;
            1    5     3             i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R flatCollectByte(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.ByteIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 817
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 819
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.ByteIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableByteCollection.addAll:(Lorg/eclipse/collections/api/ByteIterable;)Z
            pop
         3: .line 817
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 821
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ByteIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ByteIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 827
            aload 0 /* this */
            aload 1 /* charFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.CharArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.CharArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableCharList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableCharList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 833
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 835
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* charFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.CharFunction.charValueOf:(Ljava/lang/Object;)C
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableCharCollection.add:(C)Z
            pop
         3: .line 833
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 837
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
            0    6     2        target  TR;
            1    5     3             i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R flatCollectChar(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.CharIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 844
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 846
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.CharIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableCharCollection.addAll:(Lorg/eclipse/collections/api/CharIterable;)Z
            pop
         3: .line 844
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 848
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/CharIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/CharIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 854
            aload 0 /* this */
            aload 1 /* doubleFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableDoubleList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableDoubleList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 860
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 862
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* doubleFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
         3: .line 860
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 864
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            0    6     2          target  TR;
            1    5     3               i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R flatCollectDouble(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.DoubleIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 871
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 873
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.DoubleIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.addAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
         3: .line 871
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 875
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/DoubleIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/DoubleIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 881
            aload 0 /* this */
            aload 1 /* floatFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableFloatList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableFloatList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 887
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 889
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* floatFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatFunction.floatValueOf:(Ljava/lang/Object;)F
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableFloatCollection.add:(F)Z
            pop
         3: .line 887
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 891
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            0    6     2         target  TR;
            1    5     3              i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R flatCollectFloat(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.FloatIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 898
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 900
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.FloatIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableFloatCollection.addAll:(Lorg/eclipse/collections/api/FloatIterable;)Z
            pop
         3: .line 898
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 902
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/FloatIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/FloatIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 908
            aload 0 /* this */
            aload 1 /* intFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableIntList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableIntList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 914
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 916
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* intFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableIntCollection.add:(I)Z
            pop
         3: .line 914
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 918
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            0    6     2       target  TR;
            1    5     3            i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R flatCollectInt(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.IntIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 925
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 927
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.IntIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableIntCollection.addAll:(Lorg/eclipse/collections/api/IntIterable;)Z
            pop
         3: .line 925
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 929
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/IntIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/IntIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 935
            aload 0 /* this */
            aload 1 /* longFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.LongArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableLongList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableLongList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 941
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 943
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* longFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongFunction.longValueOf:(Ljava/lang/Object;)J
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableLongCollection.add:(J)Z
            pop
         3: .line 941
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 945
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            0    6     2        target  TR;
            1    5     3             i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R flatCollectLong(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.LongIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 952
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 954
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.LongIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableLongCollection.addAll:(Lorg/eclipse/collections/api/LongIterable;)Z
            pop
         3: .line 952
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 956
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/LongIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/LongIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.primitive.MutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 962
            aload 0 /* this */
            aload 1 /* shortFunction */
            new org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList.<init>:(I)V
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            checkcast org.eclipse.collections.api.list.primitive.MutableShortList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/primitive/MutableShortList;
    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=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 968
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 970
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* shortFunction */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.ShortFunction.shortValueOf:(Ljava/lang/Object;)S
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableShortCollection.add:(S)Z
            pop
         3: .line 968
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 972
            aload 2 /* target */
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
            0    6     2         target  TR;
            1    5     3              i  I
    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 <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R flatCollectShort(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.ShortIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 979
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 981
      StackMap locals: int
      StackMap stack:
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.ShortIterable
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableShortCollection.addAll:(Lorg/eclipse/collections/api/ShortIterable;)Z
            pop
         3: .line 979
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 3 // int i
         5: .line 983
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ShortIterable;>;
            0    6     2    target  TR;
            1    5     3         i  I
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ShortIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 989
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collect:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <V> org.eclipse.collections.api.list.MutableList<V> collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
         0: .line 998
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends java.util.Collection<V>> R collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        start local 2 // java.util.Collection target
         0: .line 1007
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collectWithIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.list.MutableList<T> selectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
         0: .line 1015
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.selectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.MutableList<T> rejectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
         0: .line 1023
            aload 0 /* this */
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.rejectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<T>> R selectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        start local 2 // java.util.Collection target
         0: .line 1031
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.selectWithIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <R extends java.util.Collection<T>> R rejectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        start local 2 // java.util.Collection target
         0: .line 1039
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.rejectWithIndex:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <V> org.eclipse.collections.impl.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1045
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 1053
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.flatCollect:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <P, V> org.eclipse.collections.impl.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 1059
            aload 0 /* this */
            aload 1 /* function */
            aload 2 /* parameter */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  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=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 target
         0: .line 1068
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            aload 2 /* parameter */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collectWith:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
            0    1     3     target  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  
      target     

  public <V> org.eclipse.collections.impl.list.mutable.FastList<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/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1076
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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/list/mutable/FastList<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=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1085
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* function */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.collectIf:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1091
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detect:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1097
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectWith:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1103
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectOptional:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1109
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectWithOptional:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1115
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectIndex:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.detectLastIndex:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 T min(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Comparator comparator
         0: .line 1127
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.min:([Ljava/lang/Object;ILjava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T max(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Comparator comparator
         0: .line 1133
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.max:([Ljava/lang/Object;ILjava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1139
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.min:([Ljava/lang/Object;I)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()TT;

  public T max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1145
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.max:([Ljava/lang/Object;I)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()TT;

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1151
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.minBy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1157
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.maxBy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
         0: .line 1163
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpge 2
         1: .line 1165
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            areturn
         2: .line 1167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.newIndexOutOfBoundsException:(I)Ljava/lang/IndexOutOfBoundsException;
            athrow
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    3     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  private java.lang.IndexOutOfBoundsException newIndexOutOfBoundsException(int);
    descriptor: (I)Ljava/lang/IndexOutOfBoundsException;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
         0: .line 1172
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index: "
            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.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.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            areturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object newItem
         0: .line 1178
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpne 2
         1: .line 1180
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacityForAdd:()V
         2: .line 1182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* newItem */
            aastore
         3: .line 1183
            iconst_1
            ireturn
        end local 1 // java.lang.Object newItem
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1  newItem  TT;
    Signature: (TT;)Z
    MethodParameters:
         Name  Flags
      newItem  

  public void add(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 1189
            iload 1 /* index */
            iconst_m1
            if_icmple 3
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpge 3
         1: .line 1191
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAtIndex:(ILjava/lang/Object;)V
         2: .line 1192
            goto 7
         3: .line 1193
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpne 6
         4: .line 1195
            aload 0 /* this */
            aload 2 /* element */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 1196
            goto 7
         6: .line 1199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.throwOutOfBounds:(I)V
         7: .line 1201
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1    index  I
            0    8     2  element  TT;
    Signature: (ITT;)V
    MethodParameters:
         Name  Flags
      index    
      element  

  private void addAtIndex(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 1205
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            istore 3 /* oldSize */
        start local 3 // int oldSize
         1: .line 1206
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            arraylength
            iload 3 /* oldSize */
            if_icmpne 8
         2: .line 1208
            aload 0 /* this */
            iload 3 /* oldSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.sizePlusFiftyPercent:(I)I
            anewarray java.lang.Object
            astore 4 /* newItems */
        start local 4 // java.lang.Object[] newItems
         3: .line 1209
            iload 1 /* index */
            ifle 5
         4: .line 1211
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 4 /* newItems */
            iconst_0
            iload 1 /* index */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 1213
      StackMap locals: int java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 4 /* newItems */
            iload 1 /* index */
            iconst_1
            iadd
            iload 3 /* oldSize */
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 1214
            aload 0 /* this */
            aload 4 /* newItems */
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
        end local 4 // java.lang.Object[] newItems
         7: .line 1215
            goto 9
         8: .line 1218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            iadd
            iload 3 /* oldSize */
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 1220
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* element */
            aastore
        10: .line 1221
            return
        end local 3 // int oldSize
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0   11     1     index  I
            0   11     2   element  TT;
            1   11     3   oldSize  I
            3    7     4  newItems  [Ljava/lang/Object;
    Signature: (ITT;)V
    MethodParameters:
         Name  Flags
      index    
      element  

  private int sizePlusFiftyPercent(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int oldSize
         0: .line 1225
            iload 1 /* oldSize */
            iload 1 /* oldSize */
            iconst_1
            ishr
            iadd
            iconst_1
            iadd
            istore 2 /* result */
        start local 2 // int result
         1: .line 1226
            iload 2 /* result */
            iload 1 /* oldSize */
            if_icmpge 2
            ldc 2147483639
            goto 3
      StackMap locals: int
      StackMap stack:
         2: iload 2 /* result */
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 2 // int result
        end local 1 // int oldSize
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1  oldSize  I
            1    4     2   result  I
    MethodParameters:
         Name  Flags
      oldSize  

  public T remove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
         0: .line 1232
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.get:(I)Ljava/lang/Object;
            astore 2 /* previous */
        start local 2 // java.lang.Object previous
         1: .line 1233
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            istore 3 /* totalOffset */
        start local 3 // int totalOffset
         2: .line 1234
            iload 3 /* totalOffset */
            ifle 4
         3: .line 1236
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            iload 3 /* totalOffset */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 1238
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iconst_1
            isub
            dup_x1
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aconst_null
            aastore
         5: .line 1239
            aload 2 /* previous */
            areturn
        end local 3 // int totalOffset
        end local 2 // java.lang.Object previous
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    6     1        index  I
            1    6     2     previous  TT;
            2    6     3  totalOffset  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object object
         0: .line 1245
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 1246
            iload 2 /* index */
            iflt 4
         2: .line 1248
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.remove:(I)Ljava/lang/Object;
            pop
         3: .line 1249
            iconst_1
            ireturn
         4: .line 1251
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1  object  Ljava/lang/Object;
            1    5     2   index  I
    MethodParameters:
        Name  Flags
      object  

  public boolean addAll(int, java.util.Collection<? extends T>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
        start local 2 // java.util.Collection source
         0: .line 1257
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpgt 1
            iload 1 /* index */
            ifge 2
         1: .line 1259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.throwOutOfBounds:(I)V
         2: .line 1261
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 4
         3: .line 1263
            iconst_0
            ireturn
         4: .line 1266
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lorg/eclipse/collections/impl/list/mutable/FastList;
            if_acmpne 7
         5: .line 1268
            aload 0 /* this */
            aload 2 /* source */
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllFastListAtIndex:(Lorg/eclipse/collections/impl/list/mutable/FastList;I)V
         6: .line 1269
            goto 14
         7: .line 1270
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Ljava/util/ArrayList;
            if_acmpne 10
         8: .line 1272
            aload 0 /* this */
            aload 2 /* source */
            checkcast java.util.ArrayList
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllArrayListAtIndex:(Ljava/util/ArrayList;I)V
         9: .line 1273
            goto 14
        10: .line 1274
      StackMap locals:
      StackMap stack:
            aload 2 /* source */
            instanceof java.util.List
            ifeq 13
            aload 2 /* source */
            instanceof java.util.RandomAccess
            ifeq 13
        11: .line 1276
            aload 0 /* this */
            aload 2 /* source */
            checkcast java.util.List
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllRandomAccessListAtIndex:(Ljava/util/List;I)V
        12: .line 1277
            goto 14
        13: .line 1280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* source */
            iload 1 /* index */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.addAllCollectionAtIndex:(Ljava/util/Collection;I)V
        14: .line 1282
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // java.util.Collection source
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0   15     1   index  I
            0   15     2  source  Ljava/util/Collection<+TT;>;
    Signature: (ILjava/util/Collection<+TT;>;)Z
    MethodParameters:
        Name  Flags
      index   
      source  

  private void addAllFastListAtIndex(org.eclipse.collections.impl.list.mutable.FastList<T>, );
    descriptor: (Lorg/eclipse/collections/impl/list/mutable/FastList;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.impl.list.mutable.FastList source
        start local 2 // int index
         0: .line 1287
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            istore 3 /* sourceSize */
        start local 3 // int sourceSize
         1: .line 1288
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* sourceSize */
            iadd
            istore 4 /* newSize */
        start local 4 // int newSize
         2: .line 1289
            aload 0 /* this */
            iload 4 /* newSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         3: .line 1290
            aload 0 /* this */
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.shiftElementsAtIndex:(II)V
         4: .line 1291
            aload 1 /* source */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 1292
            aload 0 /* this */
            iload 4 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         6: .line 1293
            return
        end local 4 // int newSize
        end local 3 // int sourceSize
        end local 2 // int index
        end local 1 // org.eclipse.collections.impl.list.mutable.FastList source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1      source  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     2       index  I
            1    7     3  sourceSize  I
            2    7     4     newSize  I
    Signature: (Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;I)V
    MethodParameters:
        Name  Flags
      source  
      index   

  private void addAllArrayListAtIndex(java.util.ArrayList<T>, );
    descriptor: (Ljava/util/ArrayList;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.ArrayList source
        start local 2 // int index
         0: .line 1297
            aload 1 /* source */
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* sourceSize */
        start local 3 // int sourceSize
         1: .line 1298
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* sourceSize */
            iadd
            istore 4 /* newSize */
        start local 4 // int newSize
         2: .line 1299
            aload 0 /* this */
            iload 4 /* newSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         3: .line 1300
            aload 0 /* this */
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.shiftElementsAtIndex:(II)V
         4: .line 1301
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokestatic org.eclipse.collections.impl.utility.ArrayListIterate.toArray:(Ljava/util/ArrayList;[Ljava/lang/Object;II)V
         5: .line 1302
            aload 0 /* this */
            iload 4 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         6: .line 1303
            return
        end local 4 // int newSize
        end local 3 // int sourceSize
        end local 2 // int index
        end local 1 // java.util.ArrayList source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1      source  Ljava/util/ArrayList<TT;>;
            0    7     2       index  I
            1    7     3  sourceSize  I
            2    7     4     newSize  I
    Signature: (Ljava/util/ArrayList<TT;>;I)V
    MethodParameters:
        Name  Flags
      source  
      index   

  private void addAllRandomAccessListAtIndex(java.util.List<T>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.List source
        start local 2 // int index
         0: .line 1307
            aload 1 /* source */
            invokeinterface java.util.List.size:()I
            istore 3 /* sourceSize */
        start local 3 // int sourceSize
         1: .line 1308
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 3 /* sourceSize */
            iadd
            istore 4 /* newSize */
        start local 4 // int newSize
         2: .line 1309
            aload 0 /* this */
            iload 4 /* newSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         3: .line 1310
            aload 0 /* this */
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.shiftElementsAtIndex:(II)V
         4: .line 1311
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* index */
            iload 3 /* sourceSize */
            invokestatic org.eclipse.collections.impl.utility.internal.RandomAccessListIterate.toArray:(Ljava/util/List;[Ljava/lang/Object;II)V
         5: .line 1312
            aload 0 /* this */
            iload 4 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         6: .line 1313
            return
        end local 4 // int newSize
        end local 3 // int sourceSize
        end local 2 // int index
        end local 1 // java.util.List source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1      source  Ljava/util/List<TT;>;
            0    7     2       index  I
            1    7     3  sourceSize  I
            2    7     4     newSize  I
    Signature: (Ljava/util/List<TT;>;I)V
    MethodParameters:
        Name  Flags
      source  
      index   

  private void addAllCollectionAtIndex(java.util.Collection<? extends T>, );
    descriptor: (Ljava/util/Collection;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Collection source
        start local 2 // int index
         0: .line 1317
            aload 1 /* source */
            invokeinterface java.util.Collection.toArray:()[Ljava/lang/Object;
            astore 3 /* newItems */
        start local 3 // java.lang.Object[] newItems
         1: .line 1318
            aload 3 /* newItems */
            arraylength
            istore 4 /* sourceSize */
        start local 4 // int sourceSize
         2: .line 1319
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 4 /* sourceSize */
            iadd
            istore 5 /* newSize */
        start local 5 // int newSize
         3: .line 1320
            aload 0 /* this */
            iload 5 /* newSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.ensureCapacity:(I)V
         4: .line 1321
            aload 0 /* this */
            iload 2 /* index */
            iload 4 /* sourceSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.shiftElementsAtIndex:(II)V
         5: .line 1322
            aload 0 /* this */
            iload 5 /* newSize */
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         6: .line 1323
            aload 3 /* newItems */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* index */
            iload 4 /* sourceSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 1324
            return
        end local 5 // int newSize
        end local 4 // int sourceSize
        end local 3 // java.lang.Object[] newItems
        end local 2 // int index
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1      source  Ljava/util/Collection<+TT;>;
            0    8     2       index  I
            1    8     3    newItems  [Ljava/lang/Object;
            2    8     4  sourceSize  I
            3    8     5     newSize  I
    Signature: (Ljava/util/Collection<+TT;>;I)V
    MethodParameters:
        Name  Flags
      source  
      index   

  private void shiftElementsAtIndex(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int index
        start local 2 // int sourceSize
         0: .line 1328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            iload 1 /* index */
            isub
            istore 3 /* numberToMove */
        start local 3 // int numberToMove
         1: .line 1329
            iload 3 /* numberToMove */
            ifle 3
         2: .line 1331
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 1 /* index */
            iload 2 /* sourceSize */
            iadd
            iload 3 /* numberToMove */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 1333
      StackMap locals: int
      StackMap stack:
            return
        end local 3 // int numberToMove
        end local 2 // int sourceSize
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1         index  I
            0    4     2    sourceSize  I
            1    4     3  numberToMove  I
    MethodParameters:
            Name  Flags
      index       
      sourceSize  

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

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1344
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.count:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1350
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.countWith:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 1356
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* other */
            aload 2 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.corresponds:([Ljava/lang/Object;ILorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
            ireturn
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1362
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.anySatisfy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1368
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.anySatisfyWith:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1374
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.allSatisfy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1380
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.allSatisfyWith:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1386
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.noneSatisfy:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1392
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.noneSatisfyWith:([Ljava/lang/Object;ILorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<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=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 1398
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 1399
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 1401
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
         4: .line 1399
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 4 // int i
         6: .line 1403
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectedValue  TIV;
            0    7     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
            1    7     3         result  TIV;
            2    6     4              i  I
    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=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
         0: .line 1409
            iload 1 /* injectedValue */
            istore 3 /* result */
        start local 3 // int result
         1: .line 1410
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 1412
      StackMap locals: int int
      StackMap stack:
            aload 2 /* function */
            iload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction.intValueOf:(ILjava/lang/Object;)I
            istore 3 /* result */
         4: .line 1410
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 4 // int i
         6: .line 1414
            iload 3 /* result */
            ireturn
        end local 3 // int result
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
        end local 1 // int injectedValue
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectedValue  I
            0    7     2       function  Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;
            1    7     3         result  I
            2    6     4              i  I
    Signature: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;)I
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  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=5, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
         0: .line 1420
            lload 1 /* injectedValue */
            lstore 4 /* result */
        start local 4 // long result
         1: .line 1421
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         2: goto 5
         3: .line 1423
      StackMap locals: long int
      StackMap stack:
            aload 3 /* function */
            lload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction.longValueOf:(JLjava/lang/Object;)J
            lstore 4 /* result */
         4: .line 1421
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 6 // int i
         6: .line 1425
            lload 4 /* result */
            lreturn
        end local 4 // long result
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
        end local 1 // long injectedValue
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectedValue  J
            0    7     3       function  Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;
            1    7     4         result  J
            2    6     6              i  I
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;)J
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  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=5, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
         0: .line 1431
            dload 1 /* injectedValue */
            dstore 4 /* result */
        start local 4 // double result
         1: .line 1432
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         2: goto 5
         3: .line 1434
      StackMap locals: double int
      StackMap stack:
            aload 3 /* function */
            dload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction.doubleValueOf:(DLjava/lang/Object;)D
            dstore 4 /* result */
         4: .line 1432
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 6 // int i
         6: .line 1436
            dload 4 /* result */
            dreturn
        end local 4 // double result
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
        end local 1 // double injectedValue
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectedValue  D
            0    7     3       function  Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;
            1    7     4         result  D
            2    6     6              i  I
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;)D
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  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=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
         0: .line 1442
            fload 1 /* injectedValue */
            fstore 3 /* result */
        start local 3 // float result
         1: .line 1443
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 1445
      StackMap locals: float int
      StackMap stack:
            aload 2 /* function */
            fload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction.floatValueOf:(FLjava/lang/Object;)F
            fstore 3 /* result */
         4: .line 1443
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 4 // int i
         6: .line 1447
            fload 3 /* result */
            freturn
        end local 3 // float result
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
        end local 1 // float injectedValue
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectedValue  F
            0    7     2       function  Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;
            1    7     3         result  F
            2    6     4              i  I
    Signature: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;)F
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public org.eclipse.collections.api.list.MutableList<T> distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1453
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.distinct:([Ljava/lang/Object;I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> distinct(org.eclipse.collections.api.block.HashingStrategy<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.HashingStrategy hashingStrategy
         0: .line 1459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* hashingStrategy */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.distinct:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // org.eclipse.collections.api.block.HashingStrategy hashingStrategy
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  hashingStrategy  Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/HashingStrategy<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
                 Name  Flags
      hashingStrategy  

  public java.util.IntSummaryStatistics summarizeInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Ljava/util/IntSummaryStatistics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 1468
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.summarizeInt:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/IntFunction;)Ljava/util/IntSummaryStatistics;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Ljava/util/IntSummaryStatistics;
    MethodParameters:
          Name  Flags
      function  

  public java.util.DoubleSummaryStatistics summarizeFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Ljava/util/DoubleSummaryStatistics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 1477
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.summarizeFloat:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Ljava/util/DoubleSummaryStatistics;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Ljava/util/DoubleSummaryStatistics;
    MethodParameters:
          Name  Flags
      function  

  public java.util.LongSummaryStatistics summarizeLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Ljava/util/LongSummaryStatistics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 1486
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.summarizeLong:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/LongFunction;)Ljava/util/LongSummaryStatistics;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Ljava/util/LongSummaryStatistics;
    MethodParameters:
          Name  Flags
      function  

  public java.util.DoubleSummaryStatistics summarizeDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Ljava/util/DoubleSummaryStatistics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 1495
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.summarizeDouble:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Ljava/util/DoubleSummaryStatistics;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Ljava/util/DoubleSummaryStatistics;
    MethodParameters:
          Name  Flags
      function  

  public java.util.Optional<T> reduce(java.util.function.BinaryOperator<T>);
    descriptor: (Ljava/util/function/BinaryOperator;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.function.BinaryOperator accumulator
         0: .line 1504
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* accumulator */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.reduce:([Ljava/lang/Object;ILjava/util/function/BinaryOperator;)Ljava/util/Optional;
            areturn
        end local 1 // java.util.function.BinaryOperator accumulator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  accumulator  Ljava/util/function/BinaryOperator<TT;>;
    Signature: (Ljava/util/function/BinaryOperator<TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
             Name  Flags
      accumulator  

  public <R, A> R reduceInPlace(java.util.stream.Collector<? super T, A, R>);
    descriptor: (Ljava/util/stream/Collector;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.stream.Collector collector
         0: .line 1513
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* collector */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.reduceInPlace:([Ljava/lang/Object;ILjava/util/stream/Collector;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.stream.Collector collector
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  collector  Ljava/util/stream/Collector<-TT;TA;TR;>;
    Signature: <R:Ljava/lang/Object;A:Ljava/lang/Object;>(Ljava/util/stream/Collector<-TT;TA;TR;>;)TR;
    MethodParameters:
           Name  Flags
      collector  

  public <R> R reduceInPlace(java.util.function.Supplier<R>, java.util.function.BiConsumer<R, ? super T>);
    descriptor: (Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.function.Supplier supplier
        start local 2 // java.util.function.BiConsumer accumulator
         0: .line 1522
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* supplier */
            aload 2 /* accumulator */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.reduceInPlace:([Ljava/lang/Object;ILjava/util/function/Supplier;Ljava/util/function/BiConsumer;)Ljava/lang/Object;
            areturn
        end local 2 // java.util.function.BiConsumer accumulator
        end local 1 // java.util.function.Supplier supplier
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1     supplier  Ljava/util/function/Supplier<TR;>;
            0    1     2  accumulator  Ljava/util/function/BiConsumer<TR;-TT;>;
    Signature: <R:Ljava/lang/Object;>(Ljava/util/function/Supplier<TR;>;Ljava/util/function/BiConsumer<TR;-TT;>;)TR;
    MethodParameters:
             Name  Flags
      supplier     
      accumulator  

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 1528
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumOfInt:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)J
    MethodParameters:
          Name  Flags
      function  

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 1534
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumOfLong:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)J
    MethodParameters:
          Name  Flags
      function  

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 1540
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumOfFloat:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)D
    MethodParameters:
          Name  Flags
      function  

  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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 1546
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumOfDouble:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)D
    MethodParameters:
          Name  Flags
      function  

  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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1552
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumByInt:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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.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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1558
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumByLong:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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> 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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1564
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumByFloat:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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.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=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList 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 1570
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.sumByDouble:([Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/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.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<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 <IV, P> IV injectIntoWith(IV, org.eclipse.collections.api.block.function.Function3<? super IV, ? super T, ? super P, ? extends IV>, );
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function3;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object injectValue
        start local 2 // org.eclipse.collections.api.block.function.Function3 function
        start local 3 // java.lang.Object parameter
         0: .line 1579
            aload 1 /* injectValue */
            astore 4 /* result */
        start local 4 // java.lang.Object result
         1: .line 1580
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 1582
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 2 /* function */
            aload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 5 /* i */
            aaload
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function3.value:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* result */
         4: .line 1580
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 5 // int i
         6: .line 1584
            aload 4 /* result */
            areturn
        end local 4 // java.lang.Object result
        end local 3 // java.lang.Object parameter
        end local 2 // org.eclipse.collections.api.block.function.Function3 function
        end local 1 // java.lang.Object injectValue
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  injectValue  TIV;
            0    7     2     function  Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;
            0    7     3    parameter  TP;
            1    7     4       result  TIV;
            2    6     5            i  I
    Signature: <IV:Ljava/lang/Object;P:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;TP;)TIV;
    MethodParameters:
             Name  Flags
      injectValue  
      function     
      parameter    

  public org.eclipse.collections.impl.list.mutable.FastList<T> toList();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1590
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public org.eclipse.collections.impl.list.mutable.FastList<T> toSortedList();
    descriptor: ()Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1596
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.naturalOrder:()Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;

  public org.eclipse.collections.impl.list.mutable.FastList<T> toSortedList(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/FastList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.Comparator comparator
         0: .line 1602
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            aload 1 /* comparator */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public org.eclipse.collections.api.list.MutableList<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1608
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 2 /* endIndex */
        start local 2 // int endIndex
         1: .line 1609
            iload 2 /* endIndex */
            anewarray java.lang.Object
            astore 3 /* result */
        start local 3 // java.lang.Object[] result
         2: .line 1610
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            aload 3 /* result */
            iconst_0
            iload 2 /* endIndex */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 1611
            aload 3 /* result */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newListWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 3 // java.lang.Object[] result
        end local 2 // int endIndex
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    4     2   endIndex  I
            2    4     3     result  [Ljava/lang/Object;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.MutableList<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1617
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 2 /* startIndex */
        start local 2 // int startIndex
         1: .line 1618
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 2 /* startIndex */
            isub
            istore 3 /* resultSize */
        start local 3 // int resultSize
         2: .line 1619
            iload 3 /* resultSize */
            anewarray java.lang.Object
            astore 4 /* result */
        start local 4 // java.lang.Object[] result
         3: .line 1620
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* startIndex */
            aload 4 /* result */
            iconst_0
            iload 3 /* resultSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 1621
            aload 4 /* result */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newListWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
        end local 4 // java.lang.Object[] result
        end local 3 // int resultSize
        end local 2 // int startIndex
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    5     1   predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    5     2  startIndex  I
            2    5     3  resultSize  I
            3    5     4      result  [Ljava/lang/Object;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.partition.list.PartitionMutableList<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1627
            new org.eclipse.collections.impl.partition.list.PartitionFastList
            dup
            invokespecial org.eclipse.collections.impl.partition.list.PartitionFastList.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.partition.list.PartitionMutableList result
         1: .line 1628
            aload 2 /* result */
            invokeinterface org.eclipse.collections.api.partition.list.PartitionMutableList.getSelected:()Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            astore 3 /* selected */
        start local 3 // org.eclipse.collections.impl.list.mutable.FastList selected
         2: .line 1629
            aload 2 /* result */
            invokeinterface org.eclipse.collections.api.partition.list.PartitionMutableList.getRejected:()Lorg/eclipse/collections/api/list/MutableList;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            astore 4 /* rejected */
        start local 4 // org.eclipse.collections.impl.list.mutable.FastList rejected
         3: .line 1630
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 5 /* partitionIndex */
        start local 5 // int partitionIndex
         4: .line 1631
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            iload 5 /* partitionIndex */
            isub
            istore 6 /* rejectedSize */
        start local 6 // int rejectedSize
         5: .line 1632
            aload 3 /* selected */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iconst_0
            iload 5 /* partitionIndex */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.withArrayCopy:([Ljava/lang/Object;II)Lorg/eclipse/collections/impl/list/mutable/FastList;
            pop
         6: .line 1633
            aload 4 /* rejected */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 5 /* partitionIndex */
            iload 6 /* rejectedSize */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.withArrayCopy:([Ljava/lang/Object;II)Lorg/eclipse/collections/impl/list/mutable/FastList;
            pop
         7: .line 1634
            aload 2 /* result */
            areturn
        end local 6 // int rejectedSize
        end local 5 // int partitionIndex
        end local 4 // org.eclipse.collections.impl.list.mutable.FastList rejected
        end local 3 // org.eclipse.collections.impl.list.mutable.FastList selected
        end local 2 // org.eclipse.collections.api.partition.list.PartitionMutableList result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1       predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    8     2          result  Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
            2    8     3        selected  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            3    8     4        rejected  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            4    8     5  partitionIndex  I
            5    8     6    rejectedSize  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  private int detectNotIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1639
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         1: goto 5
         2: .line 1641
      StackMap locals: int
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 1643
            iload 2 /* index */
            ireturn
         4: .line 1639
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 2
        end local 2 // int index
         6: .line 1646
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    6     2      index  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.lang.Object that
         0: .line 1652
            aload 1 /* that */
            aload 0 /* this */
            if_acmpne 2
         1: .line 1654
            iconst_1
            ireturn
         2: .line 1656
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            instanceof java.util.List
            ifne 4
         3: .line 1658
            iconst_0
            ireturn
         4: .line 1660
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            instanceof org.eclipse.collections.impl.list.mutable.FastList
            ifeq 6
         5: .line 1662
            aload 0 /* this */
            aload 1 /* that */
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.fastListEquals:(Lorg/eclipse/collections/impl/list/mutable/FastList;)Z
            ireturn
         6: .line 1664
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* that */
            checkcast java.util.List
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.arrayEqualsList:([Ljava/lang/Object;ILjava/util/List;)Z
            ireturn
        end local 1 // java.lang.Object that
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1  that  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      that  

  public boolean fastListEquals(org.eclipse.collections.impl.list.mutable.FastList<?>);
    descriptor: (Lorg/eclipse/collections/impl/list/mutable/FastList;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // org.eclipse.collections.impl.list.mutable.FastList that
         0: .line 1669
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* that */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmpeq 2
         1: .line 1671
            iconst_0
            ireturn
         2: .line 1673
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 7
         4: .line 1675
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* that */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 6
         5: .line 1677
            iconst_0
            ireturn
         6: .line 1673
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 4
        end local 2 // int i
         8: .line 1680
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.impl.list.mutable.FastList that
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    9     1  that  Lorg/eclipse/collections/impl/list/mutable/FastList<*>;
            3    8     2     i  I
    Signature: (Lorg/eclipse/collections/impl/list/mutable/FastList<*>;)Z
    MethodParameters:
      Name  Flags
      that  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
         0: .line 1686
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         1: .line 1687
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 1689
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            astore 3 /* item */
        start local 3 // java.lang.Object item
         4: .line 1690
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 3 /* item */
            ifnonnull 5
            iconst_0
            goto 6
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int int java.lang.Object
      StackMap stack: int
         5: aload 3 /* item */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.list.mutable.FastList int int java.lang.Object
      StackMap stack: int int
         6: iadd
            istore 1 /* hashCode */
        end local 3 // java.lang.Object item
         7: .line 1687
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 2 // int i
         9: .line 1692
            iload 1 /* hashCode */
            ireturn
        end local 1 // int hashCode
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            1   10     1  hashCode  I
            2    9     2         i  I
            4    7     3      item  TT;

  public void replaceAll(java.util.function.UnaryOperator<T>);
    descriptor: (Ljava/util/function/UnaryOperator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.util.function.UnaryOperator operator
         0: .line 1701
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            aload 1 /* operator */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.replaceAll:([Ljava/lang/Object;ILjava/util/function/UnaryOperator;)V
         1: .line 1702
            return
        end local 1 // java.util.function.UnaryOperator operator
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    2     1  operator  Ljava/util/function/UnaryOperator<TT;>;
    Signature: (Ljava/util/function/UnaryOperator<TT;>;)V
    MethodParameters:
          Name  Flags
      operator  

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.io.ObjectOutput out
         0: .line 1707
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 1708
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 1710
      StackMap locals: int
      StackMap stack:
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         4: .line 1708
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 1712
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    7     1   out  Ljava/io/ObjectOutput;
            2    6     2     i  I
    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=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.mutable.FastList this
        start local 1 // java.io.ObjectInput in
         0: .line 1717
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            putfield org.eclipse.collections.impl.list.mutable.FastList.size:I
         1: .line 1718
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            anewarray java.lang.Object
            putfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
         2: .line 1719
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 1721
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.items:[Ljava/lang/Object;
            iload 2 /* i */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            aastore
         5: .line 1719
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.mutable.FastList.size:I
            if_icmplt 4
        end local 2 // int i
         7: .line 1723
            return
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.list.mutable.FastList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/list/mutable/FastList<TT;>;
            0    8     1    in  Ljava/io/ObjectInput;
            3    7     2     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  public org.eclipse.collections.api.list.MutableList reverseThis();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.reverseThis:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.list.mutable.FastList.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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection 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/collection/MutableCollection;
    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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable 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/ReversibleIterable;
    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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable 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/list/ListIterable;
    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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList 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/list/MutableList;
    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.list.mutable.FastList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable take(int);
    descriptor: (I)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.take:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable take(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.take:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable selectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.primitive.ObjectIntPredicate
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.selectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/MutableList;
            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.list.mutable.FastList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList clone();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.clone:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    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.list.mutable.FastList.clone:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public org.eclipse.collections.api.list.ListIterable rejectWithIndex(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.primitive.ObjectIntPredicate
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.rejectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList sortThis();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.sortThis:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList sortThis(java.util.Comparator);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    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.util.Comparator
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableCharCollection collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    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.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            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.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleCharIterable;
    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.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.CharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/CharList;
    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.list.mutable.FastList.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            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.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    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.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            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.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleIntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleIntIterable;
    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.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.IntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/IntList;
    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.list.mutable.FastList.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
            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.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    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.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            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.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleLongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleLongIterable;
    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.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.LongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/LongList;
    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.list.mutable.FastList.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection 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/collection/MutableCollection;
    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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable 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/ReversibleIterable;
    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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable 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/list/ListIterable;
    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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList 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/list/MutableList;
    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.list.mutable.FastList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableByteCollection collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    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.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            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.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleByteIterable;
    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.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/ByteList;
    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.list.mutable.FastList.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
            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.list.mutable.FastList.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.list.PartitionMutableList partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
    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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionMutableCollection partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
    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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.ordered.PartitionReversibleIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionReversibleIterable;
    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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.list.PartitionList partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionList;
    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.list.mutable.FastList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            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.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    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.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.DoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    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.list.mutable.FastList.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.MutableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ordered.ReversibleIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/ReversibleIterableMultimap;
    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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.list.MutableListMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
    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.list.mutable.FastList.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection 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/collection/MutableCollection;
    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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable 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/ReversibleIterable;
    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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable 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/list/ListIterable;
    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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList 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/list/MutableList;
    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.list.mutable.FastList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/MutableList;
            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.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableShortCollection collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    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.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
            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.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleShortIterable;
    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.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.ShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/ShortList;
    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.list.mutable.FastList.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
            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.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableFloatCollection collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    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.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            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.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleFloatIterable;
    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.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.FloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/FloatList;
    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.list.mutable.FastList.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.MutableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ordered.ReversibleIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/ReversibleIterableMultimap;
    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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.list.MutableListMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/list/MutableListMultimap;
    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.list.mutable.FastList.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/list/FastListMultimap;
            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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection 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/collection/MutableCollection;
    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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable 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/ReversibleIterable;
    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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable 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/list/ListIterable;
    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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList 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/list/MutableList;
    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.list.mutable.FastList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.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.list.ListIterable distinct(org.eclipse.collections.api.block.HashingStrategy);
    descriptor: (Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/ListIterable;
    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.HashingStrategy
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.distinct:(Lorg/eclipse/collections/api/block/HashingStrategy;)Lorg/eclipse/collections/api/list/MutableList;
            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.list.mutable.FastList.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.distinct:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.list.PartitionMutableList 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/list/PartitionMutableList;
    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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionMutableCollection 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/PartitionMutableCollection;
    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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.ordered.PartitionReversibleIterable 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/PartitionReversibleIterable;
    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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.list.PartitionList 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/list/PartitionList;
    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.list.mutable.FastList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/partition/list/PartitionFastList;
            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.list.mutable.FastList.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.list.MutableList selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    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.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            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.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleBooleanIterable;
    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.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.BooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/BooleanList;
    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.list.mutable.FastList.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
    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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList toSortedList(java.util.Comparator);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    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.util.Comparator
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.toSortedList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.MutableList toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    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.list.mutable.FastList.toList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            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
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    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
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
    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
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            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.list.mutable.FastList.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.ordered.ReversibleIterable drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.drop:(I)Lorg/eclipse/collections/api/list/MutableList;
            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.list.mutable.FastList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.ordered.PartitionReversibleIterable partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionReversibleIterable;
    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.list.mutable.FastList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.list.PartitionList partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionList;
    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.list.mutable.FastList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionMutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/mutable/AbstractMutableList<TT;>;Ljava/io/Externalizable;Ljava/util/RandomAccess;Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;
SourceFile: "FastList.java"