final class org.eclipse.collections.impl.list.immutable.ImmutableArrayList<T> extends org.eclipse.collections.impl.list.immutable.AbstractImmutableList<T> implements java.io.Serializable, java.util.RandomAccess, org.eclipse.collections.impl.parallel.BatchIterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.list.immutable.ImmutableArrayList
  super_class: org.eclipse.collections.impl.list.immutable.AbstractImmutableList
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final T[] items;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [TT;

  void <init>();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object[] newElements
         0: .line 66
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.list.immutable.AbstractImmutableList.<init>:()V
         1: .line 68
            aload 1 /* newElements */
            ifnonnull 3
         2: .line 70
            new java.lang.IllegalArgumentException
            dup
            ldc "items cannot be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 72
      StackMap locals: org.eclipse.collections.impl.list.immutable.ImmutableArrayList java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* newElements */
            putfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
         4: .line 73
            return
        end local 1 // java.lang.Object[] newElements
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    5     1  newElements  [Ljava/lang/Object;
    Signature: ([TT;)V
    MethodParameters:
             Name  Flags
      newElements  

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

  public static <E> org.eclipse.collections.impl.list.immutable.ImmutableArrayList<E> newListWith(E[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList;
    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 82
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 0 /* elements */
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<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/immutable/ImmutableArrayList<TE;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.list.ImmutableList<T> newWith(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object newItem
         0: .line 88
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 89
            iload 2 /* oldSize */
            iconst_1
            iadd
            anewarray java.lang.Object
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         2: .line 90
            aload 0 /* this */
            aload 3 /* array */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            pop
         3: .line 91
            aload 3 /* array */
            iload 2 /* oldSize */
            aload 1 /* newItem */
            aastore
         4: .line 92
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 3 /* array */
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<init>:([Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object[] array
        end local 2 // int oldSize
        end local 1 // java.lang.Object newItem
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    5     1  newItem  TT;
            1    5     2  oldSize  I
            2    5     3    array  [Ljava/lang/Object;
    Signature: (TT;)Lorg/eclipse/collections/api/list/ImmutableList<TT;>;
    MethodParameters:
         Name  Flags
      newItem  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 98
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            invokestatic java.util.Arrays.hashCode:([Ljava/lang/Object;)I
            ireturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;

  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.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object that
         0: .line 104
            aload 1 /* that */
            aload 0 /* this */
            if_acmpne 2
         1: .line 106
            iconst_1
            ireturn
         2: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            instanceof java.util.List
            ifne 4
         3: .line 110
            iconst_0
            ireturn
         4: .line 112
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            instanceof org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            ifeq 6
         5: .line 114
            aload 0 /* this */
            aload 1 /* that */
            checkcast org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.immutableArrayListEquals:(Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList;)Z
            ireturn
         6: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    7     1  that  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      that  

  public boolean immutableArrayListEquals(org.eclipse.collections.impl.list.immutable.ImmutableArrayList<?>);
    descriptor: (Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList otherList
         0: .line 121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 1 /* otherList */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            invokestatic java.util.Arrays.equals:([Ljava/lang/Object;[Ljava/lang/Object;)Z
            ireturn
        end local 1 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList otherList
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  otherList  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<*>;
    Signature: (Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<*>;)Z
    MethodParameters:
           Name  Flags
      otherList  

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 127
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;

  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.immutable.ImmutableArrayList this
         0: .line 133
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.isEmpty:()Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iconst_0
            aaload
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
         0: .line 139
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.isEmpty:()Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            iconst_1
            isub
            aaload
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
    Signature: ()TT;

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 145
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: org.eclipse.collections.impl.list.immutable.ImmutableArrayList org.eclipse.collections.api.block.procedure.Procedure top int int java.lang.Object[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* each */
        start local 2 // java.lang.Object each
         2: .line 147
            aload 1 /* procedure */
            aload 2 /* each */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object each
         3: .line 145
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 149
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    6     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            2    3     2       each  TT;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 154
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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 155
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        start local 2 // int sectionIndex
        start local 3 // int sectionCount
         0: .line 160
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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 161
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // int batchSize
         0: .line 166
            iconst_1
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  batchSize  I
    MethodParameters:
           Name  Flags
      batchSize  

  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.immutable.ImmutableArrayList 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 172
            iload 1 /* from */
            iload 2 /* to */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 173
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.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 174
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 org.eclipse.collections.api.list.ImmutableList<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 179
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/ImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.list.ImmutableList<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 185
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/list/ImmutableList<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.immutable.ImmutableArrayList 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 194
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.api.list.ImmutableList<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 200
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/list/ImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.list.ImmutableList<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 206
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/list/ImmutableList<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.immutable.ImmutableArrayList 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 215
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.api.partition.list.PartitionImmutableList<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 221
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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;
            invokevirtual org.eclipse.collections.impl.partition.list.PartitionFastList.toImmutable:()Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.list.PartitionImmutableList<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 227
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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;
            invokevirtual org.eclipse.collections.impl.partition.list.PartitionFastList.toImmutable:()Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/partition/list/PartitionImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.api.list.ImmutableList<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Class clazz
         0: .line 233
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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;
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/list/ImmutableList<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.list.ImmutableList<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 239
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/ImmutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <P, V> org.eclipse.collections.api.list.ImmutableList<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 245
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* function */
            aload 2 /* parameter */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/list/ImmutableList<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <V> org.eclipse.collections.api.list.ImmutableList<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/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
         0: .line 254
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/ImmutableList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        start local 2 // java.util.Collection target
         0: .line 263
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.ImmutableList<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/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
         0: .line 271
            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.immutable.ImmutableArrayList.selectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/ImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.ImmutableList<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/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
         0: .line 279
            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.immutable.ImmutableArrayList.rejectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/ImmutableList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        start local 2 // java.util.Collection target
         0: .line 287
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate predicate
        start local 2 // java.util.Collection target
         0: .line 295
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.api.list.ImmutableList<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList 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 303
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* predicate */
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/ImmutableList<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  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.immutable.ImmutableArrayList 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 312
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.api.list.ImmutableList<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 318
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            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;
            checkcast org.eclipse.collections.impl.list.mutable.FastList
            invokevirtual org.eclipse.collections.impl.list.mutable.FastList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/list/ImmutableList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 324
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 330
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 336
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 342
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 348
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 353
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 <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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 359
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 365
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 371
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 377
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 386
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 395
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 404
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 413
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // java.util.function.BinaryOperator accumulator
         0: .line 422
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // java.util.stream.Collector collector
         0: .line 431
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // java.util.function.Supplier supplier
        start local 2 // java.util.function.BiConsumer accumulator
         0: .line 440
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 446
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 452
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 458
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 464
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 470
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 471
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 5
      StackMap locals: org.eclipse.collections.impl.list.immutable.ImmutableArrayList java.lang.Object org.eclipse.collections.api.block.function.Function2 java.lang.Object top int int java.lang.Object[]
      StackMap stack:
         2: aload 7
            iload 5
            aaload
            astore 4 /* each */
        start local 4 // java.lang.Object each
         3: .line 473
            aload 2 /* function */
            aload 3 /* result */
            aload 4 /* each */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        end local 4 // java.lang.Object each
         4: .line 471
            iinc 5 1
      StackMap locals:
      StackMap stack:
         5: iload 5
            iload 6
            if_icmplt 2
         6: .line 475
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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;
            3    4     4           each  TT;
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  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.immutable.ImmutableArrayList this
         0: .line 481
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            ireturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 487
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object o
         0: .line 493
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.equal:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* o */
            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 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 499
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 505
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            areturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;

  public <E> E[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object[] a
         0: .line 511
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 512
            aload 1 /* a */
            arraylength
            iload 2 /* size */
            if_icmpge 3
         2: .line 514
            aload 1 /* a */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
            iload 2 /* size */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 1 /* a */
         3: .line 516
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iconst_0
            aload 1 /* a */
            iconst_0
            iload 2 /* size */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 517
            aload 1 /* a */
            arraylength
            iload 2 /* size */
            if_icmple 6
         5: .line 519
            aload 1 /* a */
            iload 2 /* size */
            aconst_null
            aastore
         6: .line 521
      StackMap locals:
      StackMap stack:
            aload 1 /* a */
            areturn
        end local 2 // int size
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    7     1     a  [Ljava/lang/Object;
            1    7     2  size  I
    Signature: <E:Ljava/lang/Object;>([TE;)[TE;
    MethodParameters:
      Name  Flags
      a     

  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.immutable.ImmutableArrayList 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 527
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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 528
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
         0: .line 533
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         1: .line 534
            aload 1 /* buf */
            bipush 91
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         2: .line 536
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            istore 2 /* localSize */
        start local 2 // int localSize
         3: .line 537
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 12
         5: .line 539
      StackMap locals: java.lang.StringBuilder int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            astore 4 /* item */
        start local 4 // java.lang.Object item
         6: .line 540
            iload 3 /* i */
            ifle 8
         7: .line 542
            aload 1 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 544
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* buf */
            aload 4 /* item */
            aload 0 /* this */
            if_acmpne 9
            ldc "(this ImmutableArrayList)"
            goto 10
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         9: aload 4 /* item */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
      StackMap locals: org.eclipse.collections.impl.list.immutable.ImmutableArrayList java.lang.StringBuilder int int java.lang.Object
      StackMap stack: java.lang.StringBuilder java.lang.String
        10: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 4 // java.lang.Object item
        11: .line 537
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iload 2 /* localSize */
            if_icmplt 5
        end local 3 // int i
        13: .line 547
            aload 1 /* buf */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 548
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // int localSize
        end local 1 // java.lang.StringBuilder buf
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            1   15     1        buf  Ljava/lang/StringBuilder;
            3   15     2  localSize  I
            4   13     3          i  I
            6   11     4       item  TT;

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // java.util.Collection collection
         0: .line 554
            aload 1 /* collection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.in:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/block/factory/Predicates;
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  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.immutable.ImmutableArrayList this
        start local 1 // int index
         0: .line 560
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            areturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  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.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object item
         0: .line 566
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* item */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.indexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object item
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  item  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      item  

  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.immutable.ImmutableArrayList this
        start local 1 // java.lang.Object item
         0: .line 572
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            aload 1 /* item */
            invokestatic org.eclipse.collections.impl.utility.internal.InternalArrayIterate.lastIndexOf:([Ljava/lang/Object;ILjava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object item
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    1     1  item  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      item  

  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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 578
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 584
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 org.eclipse.collections.api.list.ImmutableList<T> take(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // int count
         0: .line 590
            iload 1 /* count */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            if_icmplt 2
         1: .line 592
            aload 0 /* this */
            areturn
         2: .line 594
      StackMap locals:
      StackMap stack:
            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;
            invokeinterface org.eclipse.collections.api.list.MutableList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    3     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/ImmutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.ImmutableList<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 600
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 2 /* endIndex */
        start local 2 // int endIndex
         1: .line 601
            iload 2 /* endIndex */
            anewarray java.lang.Object
            astore 3 /* result */
        start local 3 // java.lang.Object[] result
         2: .line 602
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.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 603
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 3 /* result */
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<init>:([Ljava/lang/Object;)V
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/ImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.list.ImmutableList<T> drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // int count
         0: .line 609
            iload 1 /* count */
            ifne 2
         1: .line 611
            aload 0 /* this */
            areturn
         2: .line 613
      StackMap locals:
      StackMap stack:
            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;
            invokeinterface org.eclipse.collections.api.list.MutableList.toImmutable:()Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    3     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/list/ImmutableList<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.list.ImmutableList<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 619
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 2 /* startIndex */
        start local 2 // int startIndex
         1: .line 620
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            iload 2 /* startIndex */
            isub
            istore 3 /* resultSize */
        start local 3 // int resultSize
         2: .line 621
            iload 3 /* resultSize */
            anewarray java.lang.Object
            astore 4 /* result */
        start local 4 // java.lang.Object[] result
         3: .line 622
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.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 623
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 4 /* result */
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<init>:([Ljava/lang/Object;)V
            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.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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/ImmutableList<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.partition.list.PartitionImmutableList<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/PartitionImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 629
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.detectNotIndex:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            istore 2 /* partitionIndex */
        start local 2 // int partitionIndex
         1: .line 630
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            iload 2 /* partitionIndex */
            isub
            istore 3 /* rejectedSize */
        start local 3 // int rejectedSize
         2: .line 631
            iload 2 /* partitionIndex */
            anewarray java.lang.Object
            astore 4 /* selectedArray */
        start local 4 // java.lang.Object[] selectedArray
         3: .line 632
            iload 3 /* rejectedSize */
            anewarray java.lang.Object
            astore 5 /* rejectedArray */
        start local 5 // java.lang.Object[] rejectedArray
         4: .line 633
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iconst_0
            aload 4 /* selectedArray */
            iconst_0
            iload 2 /* partitionIndex */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 634
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iload 2 /* partitionIndex */
            aload 5 /* rejectedArray */
            iconst_0
            iload 3 /* rejectedSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 635
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 4 /* selectedArray */
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<init>:([Ljava/lang/Object;)V
            astore 6 /* selected */
        start local 6 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList selected
         7: .line 636
            new org.eclipse.collections.impl.list.immutable.ImmutableArrayList
            dup
            aload 5 /* rejectedArray */
            invokespecial org.eclipse.collections.impl.list.immutable.ImmutableArrayList.<init>:([Ljava/lang/Object;)V
            astore 7 /* rejected */
        start local 7 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList rejected
         8: .line 637
            new org.eclipse.collections.impl.partition.list.PartitionImmutableListImpl
            dup
            aload 6 /* selected */
            aload 7 /* rejected */
            invokespecial org.eclipse.collections.impl.partition.list.PartitionImmutableListImpl.<init>:(Lorg/eclipse/collections/api/list/ImmutableList;Lorg/eclipse/collections/api/list/ImmutableList;)V
            areturn
        end local 7 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList rejected
        end local 6 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList selected
        end local 5 // java.lang.Object[] rejectedArray
        end local 4 // java.lang.Object[] selectedArray
        end local 3 // int rejectedSize
        end local 2 // int partitionIndex
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            0    9     1       predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    9     2  partitionIndex  I
            2    9     3    rejectedSize  I
            3    9     4   selectedArray  [Ljava/lang/Object;
            4    9     5   rejectedArray  [Ljava/lang/Object;
            7    9     6        selected  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
            8    9     7        rejected  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList<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.immutable.ImmutableArrayList this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 642
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         1: goto 5
         2: .line 644
      StackMap locals: int
      StackMap stack:
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.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 646
            iload 2 /* index */
            ireturn
         4: .line 642
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* index */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            if_icmplt 2
        end local 2 // int index
         6: .line 649
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.size:()I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<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 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.immutable.ImmutableArrayList this
         0: .line 658
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.list.immutable.ImmutableArrayList.items:[Ljava/lang/Object;
            arraylength
            bipush 16
            invokestatic java.util.Spliterators.spliterator:([Ljava/lang/Object;III)Ljava/util/Spliterator;
            areturn
        end local 0 // org.eclipse.collections.impl.list.immutable.ImmutableArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/list/immutable/ImmutableArrayList<TT;>;
    Signature: ()Ljava/util/Spliterator<TT;>;

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

  public org.eclipse.collections.api.collection.ImmutableCollection 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/ImmutableCollection;
    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.immutable.ImmutableArrayList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.take:(I)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.take:(I)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.immutable.ImmutableArrayList.rejectWithIndex:(Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.immutable.ImmutableArrayList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection 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/ImmutableCollection;
    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.immutable.ImmutableArrayList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionImmutableCollection partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionImmutableCollection;
    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.immutable.ImmutableArrayList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWith(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.Object
            invokevirtual org.eclipse.collections.impl.list.immutable.ImmutableArrayList.newWith:(Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.immutable.ImmutableArrayList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.collection.ImmutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.immutable.ImmutableArrayList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection 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/ImmutableCollection;
    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.immutable.ImmutableArrayList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionImmutableCollection 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/PartitionImmutableCollection;
    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.immutable.ImmutableArrayList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.immutable.ImmutableArrayList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    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.immutable.ImmutableArrayList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.drop:(I)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.drop:(I)Lorg/eclipse/collections/api/list/ImmutableList;
            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.immutable.ImmutableArrayList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            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.immutable.ImmutableArrayList.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/list/PartitionImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/list/immutable/AbstractImmutableList<TT;>;Ljava/io/Serializable;Ljava/util/RandomAccess;Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;
SourceFile: "ImmutableArrayList.java"