public class org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag<T> extends org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag<T> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag
  super_class: org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag
{
  static final int MAXIMUM_USEFUL_ARRAY_BAG_SIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

  private final int[] counts;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(T[], );
    descriptor: ([Ljava/lang/Object;[I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object[] keys
        start local 2 // int[] counts
         0: .line 58
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.AbstractImmutableBag.<init>:()V
         1: .line 60
            aload 0 /* this */
            aload 1 /* keys */
            putfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
         2: .line 61
            aload 0 /* this */
            aload 2 /* counts */
            putfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
         3: .line 63
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            arraylength
            if_icmpeq 5
         4: .line 65
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         5: .line 67
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag java.lang.Object[] int[]
      StackMap stack:
            return
        end local 2 // int[] counts
        end local 1 // java.lang.Object[] keys
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    6     1    keys  [Ljava/lang/Object;
            0    6     2  counts  [I
    Signature: ([TT;[I)V
    MethodParameters:
        Name  Flags
      keys    
      counts  

  public static <T> org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag<T> newBagWith(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 71
            getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
            aload 0 /* elements */
            invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            invokestatic org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.copyFrom:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
            areturn
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public static <T> org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag<T> copyFrom(org.eclipse.collections.api.bag.Bag<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.eclipse.collections.api.bag.Bag bag
         0: .line 76
            aload 0 /* bag */
            invokeinterface org.eclipse.collections.api.bag.Bag.sizeDistinct:()I
            istore 1 /* distinctItemCount */
        start local 1 // int distinctItemCount
         1: .line 77
            iload 1 /* distinctItemCount */
            anewarray java.lang.Object
            astore 2 /* newKeys */
        start local 2 // java.lang.Object[] newKeys
         2: .line 78
            iload 1 /* distinctItemCount */
            newarray 10
            astore 3 /* newCounts */
        start local 3 // int[] newCounts
         3: .line 79
            aload 0 /* bag */
            new org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$1
            dup
            aload 2 /* newKeys */
            aload 3 /* newCounts */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$1.<init>:([Ljava/lang/Object;[I)V
            invokeinterface org.eclipse.collections.api.bag.Bag.forEachWithOccurrences:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         4: .line 90
            new org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag
            dup
            aload 2 /* newKeys */
            aload 3 /* newCounts */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.<init>:([Ljava/lang/Object;[I)V
            areturn
        end local 3 // int[] newCounts
        end local 2 // java.lang.Object[] newKeys
        end local 1 // int distinctItemCount
        end local 0 // org.eclipse.collections.api.bag.Bag bag
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0                bag  Lorg/eclipse/collections/api/bag/Bag<+TT;>;
            1    5     1  distinctItemCount  I
            2    5     2            newKeys  [Ljava/lang/Object;
            3    5     3          newCounts  [I
    Signature: <T:Ljava/lang/Object;>(Lorg/eclipse/collections/api/bag/Bag<+TT;>;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    MethodParameters:
      Name  Flags
      bag   

  public void forEachWithOccurrences(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=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 96
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 98
      StackMap locals: int
      StackMap stack:
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         3: .line 96
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            if_icmplt 2
        end local 2 // int i
         5: .line 100
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    6     0                this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    6     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
            1    5     2                   i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public int sizeDistinct();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 105
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            ireturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 111
            iconst_0
            istore 1 /* sum */
        start local 1 // int sum
         1: .line 112
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag int top int int int[]
      StackMap stack:
         2: aload 5
            iload 3
            iaload
            istore 2 /* value */
        start local 2 // int value
         3: .line 114
            iload 1 /* sum */
            iload 2 /* value */
            iadd
            istore 1 /* sum */
        end local 2 // int value
         4: .line 112
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 116
            iload 1 /* sum */
            ireturn
        end local 1 // int sum
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            1    7     1    sum  I
            3    4     2  value  I

  public int occurrencesOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object item
         0: .line 122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.equal:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* item */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectIndexWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 123
            iload 2 /* index */
            iconst_m1
            if_icmple 3
         2: .line 125
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* index */
            iaload
            ireturn
         3: .line 127
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object item
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    4     1   item  Ljava/lang/Object;
            1    4     2  index  I
    MethodParameters:
      Name  Flags
      item  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWith(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object element
         0: .line 133
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.equal:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* element */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectIndexWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            istore 2 /* elementIndex */
        start local 2 // int elementIndex
         1: .line 134
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.sizeDistinct:()I
            iload 2 /* elementIndex */
            iconst_m1
            if_icmpne 2
            iconst_1
            goto 3
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag java.lang.Object int
      StackMap stack: int
         2: iconst_0
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag java.lang.Object int
      StackMap stack: int int
         3: iadd
            istore 3 /* distinctItemCount */
        start local 3 // int distinctItemCount
         4: .line 135
            iload 3 /* distinctItemCount */
            bipush 20
            if_icmple 6
         5: .line 137
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
         6: .line 139
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* element */
            iload 2 /* elementIndex */
            iload 3 /* distinctItemCount */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.newArrayBagWith:(Ljava/lang/Object;II)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 3 // int distinctItemCount
        end local 2 // int elementIndex
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    7     1            element  TT;
            1    7     2       elementIndex  I
            4    7     3  distinctItemCount  I
    Signature: (TT;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
         Name  Flags
      element  

  private org.eclipse.collections.api.bag.ImmutableBag<T> newArrayBagWith(T, int, int);
    descriptor: (Ljava/lang/Object;II)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object element
        start local 2 // int elementIndex
        start local 3 // int distinctItemCount
         0: .line 144
            iload 3 /* distinctItemCount */
            anewarray java.lang.Object
            astore 4 /* newKeys */
        start local 4 // java.lang.Object[] newKeys
         1: .line 145
            iload 3 /* distinctItemCount */
            newarray 10
            astore 5 /* newCounts */
        start local 5 // int[] newCounts
         2: .line 146
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iconst_0
            aload 4 /* newKeys */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 147
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iconst_0
            aload 5 /* newCounts */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 148
            iload 2 /* elementIndex */
            iconst_m1
            if_icmpne 8
         5: .line 150
            aload 4 /* newKeys */
            iload 3 /* distinctItemCount */
            iconst_1
            isub
            aload 1 /* element */
            aastore
         6: .line 151
            aload 5 /* newCounts */
            iload 3 /* distinctItemCount */
            iconst_1
            isub
            iconst_1
            iastore
         7: .line 152
            goto 9
         8: .line 155
      StackMap locals: java.lang.Object[] int[]
      StackMap stack:
            aload 5 /* newCounts */
            iload 2 /* elementIndex */
            dup2
            iaload
            iconst_1
            iadd
            iastore
         9: .line 157
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag
            dup
            aload 4 /* newKeys */
            aload 5 /* newCounts */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.<init>:([Ljava/lang/Object;[I)V
            areturn
        end local 5 // int[] newCounts
        end local 4 // java.lang.Object[] newKeys
        end local 3 // int distinctItemCount
        end local 2 // int elementIndex
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0   10     1            element  TT;
            0   10     2       elementIndex  I
            0   10     3  distinctItemCount  I
            1   10     4            newKeys  [Ljava/lang/Object;
            2   10     5          newCounts  [I
    Signature: (TT;II)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
                   Name  Flags
      element            
      elementIndex       
      distinctItemCount  

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWithout(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object element
         0: .line 163
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.equal:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* element */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectIndexWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            istore 2 /* elementIndex */
        start local 2 // int elementIndex
         1: .line 164
            iload 2 /* elementIndex */
            iconst_m1
            if_icmple 17
         2: .line 166
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.sizeDistinct:()I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* elementIndex */
            iaload
            iconst_1
            if_icmpne 3
            iconst_1
            goto 4
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag java.lang.Object int
      StackMap stack: int
         3: iconst_0
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag java.lang.Object int
      StackMap stack: int int
         4: isub
            istore 3 /* distinctItemCount */
        start local 3 // int distinctItemCount
         5: .line 167
            iload 3 /* distinctItemCount */
            anewarray java.lang.Object
            astore 4 /* newKeys */
        start local 4 // java.lang.Object[] newKeys
         6: .line 168
            iload 3 /* distinctItemCount */
            newarray 10
            astore 5 /* newCounts */
        start local 5 // int[] newCounts
         7: .line 169
            iload 3 /* distinctItemCount */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.sizeDistinct:()I
            if_icmpne 12
         8: .line 171
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iconst_0
            aload 4 /* newKeys */
            iconst_0
            iload 3 /* distinctItemCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 172
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iconst_0
            aload 5 /* newCounts */
            iconst_0
            iload 3 /* distinctItemCount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 173
            aload 5 /* newCounts */
            iload 2 /* elementIndex */
            dup2
            iaload
            iconst_1
            isub
            iastore
        11: .line 174
            goto 16
        12: .line 177
      StackMap locals: int java.lang.Object[] int[]
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iconst_0
            aload 4 /* newKeys */
            iconst_0
            iload 2 /* elementIndex */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 178
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iconst_0
            aload 5 /* newCounts */
            iconst_0
            iload 2 /* elementIndex */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 179
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iload 2 /* elementIndex */
            iconst_1
            iadd
            aload 4 /* newKeys */
            iload 2 /* elementIndex */
            aload 4 /* newKeys */
            arraylength
            iload 2 /* elementIndex */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 180
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* elementIndex */
            iconst_1
            iadd
            aload 5 /* newCounts */
            iload 2 /* elementIndex */
            aload 5 /* newCounts */
            arraylength
            iload 2 /* elementIndex */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 182
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag
            dup
            aload 4 /* newKeys */
            aload 5 /* newCounts */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.<init>:([Ljava/lang/Object;[I)V
            areturn
        end local 5 // int[] newCounts
        end local 4 // java.lang.Object[] newKeys
        end local 3 // int distinctItemCount
        17: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // int elementIndex
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   18     0               this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0   18     1            element  TT;
            1   18     2       elementIndex  I
            5   17     3  distinctItemCount  I
            6   17     4            newKeys  [Ljava/lang/Object;
            7   17     5          newCounts  [I
    Signature: (TT;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.map.MutableMap<T, java.lang.Integer> toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 190
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 1 /* map */
        start local 1 // org.eclipse.collections.api.map.MutableMap map
         1: .line 191
            aload 0 /* this */
            aload 1 /* map */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic value(Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  java/util/Map.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (Ljava/lang/Object;I)V
                  1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.forEachWithOccurrences:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 192
            aload 1 /* map */
            areturn
        end local 1 // org.eclipse.collections.api.map.MutableMap map
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            1    3     1   map  Lorg/eclipse/collections/api/map/MutableMap<TT;Ljava/lang/Integer;>;
    Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TT;Ljava/lang/Integer;>;

  public org.eclipse.collections.api.bag.ImmutableBag<T> newWithAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Iterable elements
         0: .line 198
            getstatic org.eclipse.collections.impl.factory.Bags.immutable:Lorg/eclipse/collections/api/factory/bag/ImmutableBagFactory;
            aload 1 /* elements */
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            invokeinterface org.eclipse.collections.api.factory.bag.ImmutableBagFactory.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.bag.ImmutableBag<T> selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
         0: .line 204
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 205
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* result */
            invokedynamic value(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag.lambda$1(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.forEachWithOccurrences:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 211
            aload 2 /* result */
            invokeinterface org.eclipse.collections.api.bag.MutableBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntPredicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;
            1    3     2     result  Lorg/eclipse/collections/api/bag/MutableBag<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <S> org.eclipse.collections.api.bag.ImmutableBag<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Class clazz
         0: .line 217
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 218
            aload 0 /* this */
            aload 1 /* clazz */
            aload 2 /* result */
            invokedynamic value(Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag.lambda$2(Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.forEachWithOccurrences:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         2: .line 224
            aload 2 /* result */
            invokestatic org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.copyFrom:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    3     1   clazz  Ljava/lang/Class<TS;>;
            1    3     2  result  Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 230
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.bag.HashBagMultimap
            invokevirtual org.eclipse.collections.impl.multimap.bag.HashBagMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.multimap.bag.ImmutableBagMultimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 236
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.bag.HashBagMultimap
            invokevirtual org.eclipse.collections.impl.multimap.bag.HashBagMultimap.toImmutable:()Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 242
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.getFirst:([Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()TT;

  public T getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 248
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.getLast:([Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 254
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            arraylength
            ifne 2
         1: .line 256
            new java.lang.IllegalStateException
            dup
            ldc "Size must be 1 but was 0"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            arraylength
            iconst_1
            if_icmpgt 3
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iconst_0
            iaload
            iconst_1
            if_icmple 4
         3: .line 261
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Size must be 1 but was greater than 1"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.getFirst:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()TT;

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

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

  public <V> org.eclipse.collections.api.bag.ImmutableBag<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/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 282
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 283
            aload 2 /* result */
            invokestatic org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.copyFrom:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    2     2    result  Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.bag.ImmutableBag<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/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag 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 291
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 292
            aload 3 /* result */
            invokestatic org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.copyFrom:(Lorg/eclipse/collections/api/bag/Bag;)Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;
            areturn
        end local 3 // org.eclipse.collections.api.bag.MutableBag result
        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.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    2     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    2     3     result  Lorg/eclipse/collections/api/bag/MutableBag<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/bag/ImmutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V> org.eclipse.collections.api.bag.ImmutableBag<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/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 298
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.bag.mutable.HashBag
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Object other
         0: .line 304
            aload 0 /* this */
            aload 1 /* other */
            if_acmpne 2
         1: .line 306
            iconst_1
            ireturn
         2: .line 308
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof org.eclipse.collections.api.bag.Bag
            ifne 4
         3: .line 310
            iconst_0
            ireturn
         4: .line 312
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast org.eclipse.collections.api.bag.Bag
            astore 2 /* bag */
        start local 2 // org.eclipse.collections.api.bag.Bag bag
         5: .line 313
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.size:()I
            aload 2 /* bag */
            invokeinterface org.eclipse.collections.api.bag.Bag.size:()I
            if_icmpeq 7
         6: .line 315
            iconst_0
            ireturn
         7: .line 317
      StackMap locals: org.eclipse.collections.api.bag.Bag
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 12
         9: .line 319
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 3 /* i */
            iaload
            aload 2 /* bag */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.bag.Bag.occurrencesOf:(Ljava/lang/Object;)I
            if_icmpeq 11
        10: .line 321
            iconst_0
            ireturn
        11: .line 317
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            if_icmplt 9
        end local 3 // int i
        13: .line 324
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.bag.Bag bag
        end local 1 // java.lang.Object other
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0   14     1  other  Ljava/lang/Object;
            5   14     2    bag  Lorg/eclipse/collections/api/bag/Bag<*>;
            8   13     3      i  I
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 330
            iconst_0
            istore 1 /* sum */
        start local 1 // int sum
         1: .line 331
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 8
         3: .line 333
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            astore 3 /* each */
        start local 3 // java.lang.Object each
         4: .line 334
            iload 1 /* sum */
            aload 3 /* each */
            ifnonnull 5
            iconst_0
            goto 6
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag int int java.lang.Object
      StackMap stack: int
         5: aload 3 /* each */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag int int java.lang.Object
      StackMap stack: int int
         6: aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* i */
            iaload
            ixor
            iadd
            istore 1 /* sum */
        end local 3 // java.lang.Object each
         7: .line 331
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            if_icmplt 3
        end local 2 // int i
         9: .line 336
            iload 1 /* sum */
            ireturn
        end local 1 // int sum
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            1   10     1   sum  I
            2    9     2     i  I
            4    7     3  each  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=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 342
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 9
         2: .line 344
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            astore 3 /* key */
        start local 3 // java.lang.Object key
         3: .line 345
            iconst_1
            istore 4 /* j */
        start local 4 // int j
         4: goto 7
         5: .line 347
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 1 /* procedure */
            aload 3 /* key */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         6: .line 345
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.counts:[I
            iload 2 /* i */
            iaload
            if_icmple 5
        end local 4 // int j
        end local 3 // java.lang.Object key
         8: .line 342
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            arraylength
            if_icmplt 2
        end local 2 // int i
        10: .line 350
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0   11     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            1   10     2          i  I
            3    8     3        key  TT;
            4    8     4          j  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 355
            new org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$ArrayBagIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$ArrayBagIterator.<init>:(Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag;)V
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 361
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.anySatisfy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 367
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.anySatisfyWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 373
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.allSatisfy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 379
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.allSatisfyWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 385
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.noneSatisfy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 391
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.noneSatisfyWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 397
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detect:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> T detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public java.util.Optional<T> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 409
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectOptional:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> java.util.Optional<T> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 415
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.detectWithOptional:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public T min(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.util.Comparator comparator
         0: .line 421
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.min:([Ljava/lang/Object;Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T max(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.util.Comparator comparator
         0: .line 427
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.max:([Ljava/lang/Object;Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)TT;
    MethodParameters:
            Name  Flags
      comparator  

  public T min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 433
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.min:([Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()TT;

  public T max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 439
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.max:([Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()TT;

  public <V extends java.lang.Comparable<? super V>> T minBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 445
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.minBy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 451
            aload 0 /* this */
            getfield org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.keys:[Ljava/lang/Object;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.maxBy:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<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 <S> org.eclipse.collections.api.bag.ImmutableBag<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
        start local 1 // java.lang.Iterable that
         0: .line 461
            aload 1 /* that */
            instanceof java.util.Collection
            ifne 1
            aload 1 /* that */
            instanceof org.eclipse.collections.api.RichIterable
            ifeq 4
         1: .line 463
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
            istore 2 /* thatSize */
        start local 2 // int thatSize
         2: .line 464
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.size:()I
            iload 2 /* thatSize */
            invokestatic java.lang.Math.min:(II)I
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(I)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 3 /* target */
        start local 3 // org.eclipse.collections.impl.bag.mutable.HashBag target
         3: .line 465
            aload 0 /* this */
            aload 1 /* that */
            aload 3 /* target */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.bag.mutable.HashBag
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 3 // org.eclipse.collections.impl.bag.mutable.HashBag target
        end local 2 // int thatSize
         4: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.bag.mutable.HashBag
            invokevirtual org.eclipse.collections.impl.bag.mutable.HashBag.toImmutable:()Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
            0    5     1      that  Ljava/lang/Iterable<TS;>;
            2    4     2  thatSize  I
            3    4     3    target  Lorg/eclipse/collections/impl/bag/mutable/HashBag<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/bag/ImmutableBag<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      that  

  public org.eclipse.collections.api.set.ImmutableSet<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 477
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.size:()I
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.set.mutable.UnifiedSet
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/ImmutableSet<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  protected java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
         0: .line 482
            new org.eclipse.collections.impl.bag.immutable.ImmutableBagSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.bag.immutable.ImmutableBagSerializationProxy.<init>:(Lorg/eclipse/collections/api/bag/UnsortedBag;)V
            areturn
        end local 0 // org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bag/immutable/ImmutableArrayBag<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.bag.immutable.ImmutableArrayBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag 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/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.collection.ImmutableCollection newWithout(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.bag.immutable.ImmutableArrayBag.newWithout:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/SetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.UnsortedSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/UnsortedSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.ImmutableSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zipWithIndex:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)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.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.toMapOfItemToCount:()Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MutableMapIterable toMapOfItemToCount();
    descriptor: ()Lorg/eclipse/collections/api/map/MutableMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.toMapOfItemToCount:()Lorg/eclipse/collections/api/map/MutableMap;
            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.bag.immutable.ImmutableArrayBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.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.bag.immutable.ImmutableArrayBag.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection newWithAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)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.Iterable
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.newWithAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable selectByOccurrences(org.eclipse.collections.api.block.predicate.primitive.IntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.selectByOccurrences:(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            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.bag.immutable.ImmutableArrayBag.newWith:(Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            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.bag.immutable.ImmutableArrayBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            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.bag.immutable.ImmutableArrayBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    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.bag.immutable.ImmutableArrayBag.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    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.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/UnsortedBagMultimap;
    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.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ImmutableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
    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.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.ImmutableBagIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagIterableMultimap;
    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.bag.immutable.ImmutableArrayBag.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            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.bag.immutable.ImmutableArrayBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            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.bag.immutable.ImmutableArrayBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.ImmutableBagIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBagIterable;
    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.bag.immutable.ImmutableArrayBag.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    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.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.UnsortedBagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/UnsortedBagMultimap;
    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.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ImmutableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ImmutableMultimap;
    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.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.ImmutableBagIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagIterableMultimap;
    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.bag.immutable.ImmutableArrayBag.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/ImmutableBagMultimap;
            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.bag.immutable.ImmutableArrayBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.UnsortedBag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            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.bag.immutable.ImmutableArrayBag.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.bag.UnsortedBag collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/UnsortedBag;
    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.bag.immutable.ImmutableArrayBag.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.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.bag.immutable.ImmutableArrayBag.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/ImmutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$1(org.eclipse.collections.api.block.predicate.primitive.IntPredicate, org.eclipse.collections.api.bag.MutableBag, java.lang.Object, int);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 2 // java.lang.Object each
        start local 3 // int occurrences
         0: .line 206
            aload 0
            iload 3 /* occurrences */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntPredicate.accept:(I)Z
            ifeq 2
         1: .line 208
            aload 1
            aload 2 /* each */
            iload 3 /* occurrences */
            invokeinterface org.eclipse.collections.api.bag.MutableBag.addOccurrences:(Ljava/lang/Object;I)I
            pop
         2: .line 210
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int occurrences
        end local 2 // java.lang.Object each
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     2         each  TT;
            0    3     3  occurrences  I

  private static void lambda$2(java.lang.Class, org.eclipse.collections.api.bag.MutableBag, java.lang.Object, int);
    descriptor: (Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 2 // java.lang.Object each
        start local 3 // int index
         0: .line 219
            aload 0
            aload 2 /* each */
            invokevirtual java.lang.Class.isInstance:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 221
            aload 1
            aload 2 /* each */
            iload 3 /* index */
            invokeinterface org.eclipse.collections.api.bag.MutableBag.addOccurrences:(Ljava/lang/Object;I)I
            pop
         2: .line 223
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int index
        end local 2 // java.lang.Object each
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     2   each  TT;
            0    3     3  index  I

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=8, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 3
          -1647345004: 2
          -1647345003: 3
               111375: 1
              default: 4
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "put"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_0
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "lambda$1"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_2
            istore 2
      StackMap locals:
      StackMap stack:
         4: iload 2
            lookupswitch { // 3
                    0: 5
                    1: 6
                    2: 7
              default: 8
          }
      StackMap locals:
      StackMap stack:
         5: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "java/util/Map"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;Ljava/lang/Integer;)Ljava/lang/Integer;"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.MutableMap
            invokedynamic value(Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  java/util/Map.put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; (9 itf)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         6: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.block.predicate.primitive.IntPredicate
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.bag.MutableBag
            invokedynamic value(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag.lambda$1(Lorg/eclipse/collections/api/block/predicate/primitive/IntPredicate;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         7: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast java.lang.Class
            aload 0
            iconst_1
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.bag.MutableBag
            invokedynamic value(Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/bag/immutable/ImmutableArrayBag.lambda$2(Ljava/lang/Class;Lorg/eclipse/collections/api/bag/MutableBag;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         8: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/bag/immutable/AbstractImmutableBag<TT;>;Ljava/io/Serializable;
SourceFile: "ImmutableArrayBag.java"
NestMembers:
  org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$1  org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$ArrayBagIterator
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$1
  private final ArrayBagIterator = org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag$ArrayBagIterator of org.eclipse.collections.impl.bag.immutable.ImmutableArrayBag