public abstract class org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter<T> implements org.eclipse.collections.api.collection.MutableCollection<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 88
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  protected abstract java.util.Collection<T> getDelegate();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: ()Ljava/util/Collection<TT;>;

  protected <E> org.eclipse.collections.api.collection.MutableCollection<E> wrap(java.util.Collection<E>);
    descriptor: (Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection collection
         0: .line 95
            aload 1 /* collection */
            invokestatic org.eclipse.collections.impl.collection.mutable.CollectionAdapter.adapt:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  collection  Ljava/util/Collection<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Collection<TE;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TE;>;
    MethodParameters:
            Name  Flags
      collection  

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 101
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 107
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.Iterate.getFirst:(Ljava/lang/Iterable;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
         0: .line 113
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.Iterate.getLast:(Ljava/lang/Iterable;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 119
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 1 /* iterator */
        start local 1 // java.util.Iterator iterator
         1: .line 121
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         2: .line 123
            new java.lang.IllegalStateException
            dup
            ldc "Size must be 1 but was 0"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 126
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         4: .line 127
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 6
         5: .line 129
            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
         6: .line 132
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // java.lang.Object result
        end local 1 // java.util.Iterator iterator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            1    7     1  iterator  Ljava/util/Iterator<TT;>;
            4    7     2    result  TT;
    Signature: ()TT;

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

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 145
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 146
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 151
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* objectIntProcedure */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEachWithIndex:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 152
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public boolean removeIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 157
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.removeIf:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 removeIfWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 163
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.removeIfWith:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 169
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.detect:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 175
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.detectWith:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 181
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.detectOptional:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 187
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.detectWithOptional:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 193
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 194
            aload 3 /* result */
            ifnonnull 2
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: aload 3 /* result */
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    4     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
            1    4     3     result  TT;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 203
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* result */
        start local 4 // java.lang.Object result
         1: .line 204
            aload 4 /* result */
            ifnonnull 2
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: aload 4 /* result */
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 4 // java.lang.Object result
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    4     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    4     2  parameter  TP;
            0    4     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
            1    4     4     result  TT;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public 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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 210
            aload 0 /* this */
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.Iterate.min:(Ljava/lang/Iterable;Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 216
            aload 0 /* this */
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.utility.Iterate.max:(Ljava/lang/Iterable;Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
         0: .line 222
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.min:(Ljava/lang/Iterable;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
         0: .line 228
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.max:(Ljava/lang/Iterable;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 234
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.minBy:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 240
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.maxBy:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 int count(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 246
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.count:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public 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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 252
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.anySatisfy:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 258
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfy:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 264
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.noneSatisfy:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 270
            aload 1 /* injectedValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(Ljava/lang/Object;Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectedValue  TIV;
            0    1     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TT;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public int injectInto(int, org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super T>);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
         0: .line 276
            iload 1 /* injectedValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(ILjava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
            ireturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
        end local 1 // int injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectedValue  I
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;
    Signature: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TT;>;)I
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public long injectInto(long, org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super T>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
         0: .line 282
            lload 1 /* injectedValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 3 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(JLjava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
            lreturn
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
        end local 1 // long injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectedValue  J
            0    1     3       function  Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TT;>;)J
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public double injectInto(double, org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super T>);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
         0: .line 288
            dload 1 /* injectedValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 3 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(DLjava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
            dreturn
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
        end local 1 // double injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectedValue  D
            0    1     3       function  Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TT;>;)D
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public float injectInto(float, org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super T>);
    descriptor: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
         0: .line 294
            fload 1 /* injectedValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectInto:(FLjava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
            freturn
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
        end local 1 // float injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectedValue  F
            0    1     2       function  Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;
    Signature: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TT;>;)F
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 300
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sumOfInt:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 306
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sumOfFloat:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)D
    MethodParameters:
          Name  Flags
      function  

  public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 312
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sumOfLong:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
            lreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 318
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sumOfDouble:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
            dreturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)D
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V> sumByInt(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 324
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap result
         1: .line 325
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByIntFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V> sumByFloat(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 331
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap result
         1: .line 332
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByFloatFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V> sumByLong(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 338
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap result
         1: .line 339
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByLongFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectLongHashMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectLongHashMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V> sumByDouble(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 345
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap result
         1: .line 346
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByDoubleFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.primitive.ObjectDoubleHashMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            1    2     3    result  Lorg/eclipse/collections/impl/map/mutable/primitive/ObjectDoubleHashMap<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

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

  public <R extends java.util.Collection<T>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 358
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.select:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public org.eclipse.collections.api.collection.MutableCollection<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 364
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.reject:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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/collection/MutableCollection<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<T>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 370
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.reject:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <S> org.eclipse.collections.api.collection.MutableCollection<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Class clazz
         0: .line 376
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* clazz */
            invokestatic org.eclipse.collections.impl.utility.Iterate.selectInstancesOf:(Ljava/lang/Iterable;Ljava/lang/Class;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  clazz  Ljava/lang/Class<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.collection.MutableCollection<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/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 382
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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/collection/MutableCollection<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 388
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* booleanFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectBoolean:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 394
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* booleanFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectBoolean:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
            0    1     2           target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;TR;)TR;
    MethodParameters:
                 Name  Flags
      booleanFunction  
      target           

  public org.eclipse.collections.api.collection.primitive.MutableByteCollection collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 400
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* byteFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectByte:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    MethodParameters:
              Name  Flags
      byteFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 406
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* byteFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectByte:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      byteFunction  
      target        

  public org.eclipse.collections.api.collection.primitive.MutableCharCollection collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 412
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* charFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectChar:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    MethodParameters:
              Name  Flags
      charFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 418
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* charFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectChar:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      charFunction  
      target        

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 424
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* doubleFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectDouble:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 430
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* doubleFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectDouble:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            0    1     2          target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;TR;)TR;
    MethodParameters:
                Name  Flags
      doubleFunction  
      target          

  public org.eclipse.collections.api.collection.primitive.MutableFloatCollection collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 436
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* floatFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectFloat:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    MethodParameters:
               Name  Flags
      floatFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 442
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* floatFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectFloat:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            0    1     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;TR;)TR;
    MethodParameters:
               Name  Flags
      floatFunction  
      target         

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 448
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* intFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectInt:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    MethodParameters:
             Name  Flags
      intFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 454
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* intFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectInt:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            0    1     2       target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;TR;)TR;
    MethodParameters:
             Name  Flags
      intFunction  
      target       

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 460
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* longFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectLong:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    MethodParameters:
              Name  Flags
      longFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 466
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* longFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectLong:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            0    1     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;TR;)TR;
    MethodParameters:
              Name  Flags
      longFunction  
      target        

  public org.eclipse.collections.api.collection.primitive.MutableShortCollection collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 472
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* shortFunction */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectShort:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 478
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* shortFunction */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectShort:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
            0    1     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;TR;)TR;
    MethodParameters:
               Name  Flags
      shortFunction  
      target         

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

  public <V> org.eclipse.collections.api.collection.MutableCollection<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/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 490
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.flatCollect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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/collection/MutableCollection<TV;>;
    MethodParameters:
          Name  Flags
      function  

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

  public <V> org.eclipse.collections.api.collection.MutableCollection<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/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter 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 506
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectIf:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V, R extends java.util.Collection<V>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.util.Collection target
         0: .line 515
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* function */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectIf:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     3     target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public <P> org.eclipse.collections.api.tuple.Twin<org.eclipse.collections.api.list.MutableList<T>> selectAndRejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Twin;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 523
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.selectAndRejectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/tuple/Twin;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/tuple/Twin<Lorg/eclipse/collections/api/list/MutableList<TT;>;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.partition.PartitionMutableCollection<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 529
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.partition:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
            checkcast org.eclipse.collections.api.partition.PartitionMutableCollection
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.PartitionMutableCollection<T> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 535
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.partitionWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
            checkcast org.eclipse.collections.api.partition.PartitionMutableCollection
            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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 541
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 547
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.isEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object o
         0: .line 553
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* o */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 559
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 565
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public <E> E[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object[] a
         0: .line 571
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* a */
            invokeinterface java.util.Collection.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <E:Ljava/lang/Object;>([TE;)[TE;
    MethodParameters:
      Name  Flags
      a     

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object o
         0: .line 577
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* o */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1     o  TT;
    Signature: (TT;)Z
    MethodParameters:
      Name  Flags
      o     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object o
         0: .line 583
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* o */
            invokeinterface java.util.Collection.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection collection
         0: .line 589
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* collection */
            invokeinterface java.util.Collection.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Iterable source
         0: .line 595
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  source  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAllArguments(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object[] elements
         0: .line 601
            aload 1 /* elements */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.allSatisfyWith:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  elements  [Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      elements  

  public boolean addAll(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection collection
         0: .line 607
            iconst_0
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 608
            aload 1 /* collection */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* each */
        start local 3 // java.lang.Object each
         3: .line 610
            iload 2 /* result */
            aload 0 /* this */
            aload 3 /* each */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.add:(Ljava/lang/Object;)Z
            ior
            istore 2 /* result */
        end local 3 // java.lang.Object each
         4: .line 608
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 612
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    6     1  collection  Ljava/util/Collection<+TT;>;
            1    6     2      result  Z
            3    4     3        each  TT;
    Signature: (Ljava/util/Collection<+TT;>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean addAllIterable(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Iterable iterable
         0: .line 618
            aload 1 /* iterable */
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllIterable:(Ljava/lang/Iterable;Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection collection
         0: .line 624
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.size:()I
            istore 2 /* currentSize */
        start local 2 // int currentSize
         1: .line 625
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* collection */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.removeIfWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            pop
         2: .line 626
            iload 2 /* currentSize */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.size:()I
            if_icmpeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // int currentSize
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    4     1   collection  Ljava/util/Collection<*>;
            1    4     2  currentSize  I
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean removeAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Iterable iterable
         0: .line 632
            aload 0 /* this */
            aload 1 /* iterable */
            invokestatic org.eclipse.collections.impl.collection.mutable.CollectionAdapter.wrapSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/MutableSet;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.removeAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection collection
         0: .line 638
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.size:()I
            istore 2 /* currentSize */
        start local 2 // int currentSize
         1: .line 639
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.notIn:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 1 /* collection */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.removeIfWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            pop
         2: .line 640
            iload 2 /* currentSize */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.size:()I
            if_icmpeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // int currentSize
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    4     1   collection  Ljava/util/Collection<*>;
            1    4     2  currentSize  I
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean retainAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Iterable iterable
         0: .line 646
            aload 0 /* this */
            aload 1 /* iterable */
            invokestatic org.eclipse.collections.impl.collection.mutable.CollectionAdapter.wrapSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/MutableSet;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.retainAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 652
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         1: .line 653
            return
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 658
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* procedure */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEachWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 659
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;
            0    2     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TT;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public <P> org.eclipse.collections.api.collection.MutableCollection<T> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 666
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.selectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

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

  public <P> org.eclipse.collections.api.collection.MutableCollection<T> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 683
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.rejectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

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

  public <P, V> org.eclipse.collections.api.collection.MutableCollection<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 700
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/collection/MutableCollection<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <P, A, R extends java.util.Collection<A>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends A>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 709
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1          function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;
            0    1     2         parameter  TP;
            0    1     3  targetCollection  TR;
    Signature: <P:Ljava/lang/Object;A:Ljava/lang/Object;R::Ljava/util/Collection<TA;>;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      function          
      parameter         
      targetCollection  

  public <IV, P> IV injectIntoWith(IV, org.eclipse.collections.api.block.function.Function3<? super IV, ? super T, ? super P, ? extends IV>, );
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function3;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Object injectValue
        start local 2 // org.eclipse.collections.api.block.function.Function3 function
        start local 3 // java.lang.Object parameter
         0: .line 718
            aload 1 /* injectValue */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* function */
            aload 3 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.injectIntoWith:(Ljava/lang/Object;Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function3;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 3 // java.lang.Object parameter
        end local 2 // org.eclipse.collections.api.block.function.Function3 function
        end local 1 // java.lang.Object injectValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  injectValue  TIV;
            0    1     2     function  Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;
            0    1     3    parameter  TP;
    Signature: <IV:Ljava/lang/Object;P:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function3<-TIV;-TT;-TP;+TIV;>;TP;)TIV;
    MethodParameters:
             Name  Flags
      injectValue  
      function     
      parameter    

  public <R extends java.util.Collection<T>> R into();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection target
         0: .line 724
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.list.MutableList<T> toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 730
            getstatic org.eclipse.collections.api.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

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

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.list.MutableList<T> toSortedListBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 742
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 748
            aconst_null
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSet(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 754
            aload 1 /* comparator */
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 761
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.toSortedSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.set.MutableSet<T> toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 767
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<TT;>;

  public org.eclipse.collections.api.bag.MutableBag<T> toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 773
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/bag/MutableBag<TT;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 779
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.bag.sorted.mutable.TreeBag.newBag:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/bag/sorted/mutable/TreeBag;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBag(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Comparator comparator
         0: .line 785
            aload 1 /* comparator */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.bag.sorted.mutable.TreeBag.newBag:(Ljava/util/Comparator;Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/bag/sorted/mutable/TreeBag;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <V extends java.lang.Comparable<? super V>> org.eclipse.collections.api.bag.sorted.MutableSortedBag<T> toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 791
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.toSortedBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <K, V> org.eclipse.collections.api.map.MutableMap<K, V> toMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 799
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 3 /* map */
        start local 3 // org.eclipse.collections.impl.map.mutable.UnifiedMap map
         1: .line 800
            aload 3 /* map */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.mutable.UnifiedMap.collectKeysAndValues:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            pop
         2: .line 801
            aload 3 /* map */
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.UnifiedMap map
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    3     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    3     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     3            map  Lorg/eclipse/collections/impl/map/mutable/UnifiedMap<TK;TV;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <K, V, R extends java.util.Map<K, V>> R toMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Map;)Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        start local 3 // java.util.Map target
         0: .line 810
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            new org.eclipse.collections.impl.block.procedure.MapCollectProcedure
            dup
            aload 3 /* target */
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokespecial org.eclipse.collections.impl.block.procedure.MapCollectProcedure.<init>:(Ljava/util/Map;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 811
            aload 3 /* target */
            areturn
        end local 3 // java.util.Map target
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    2     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    2     3         target  TR;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;R::Ljava/util/Map<TK;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  
      target         

  public <K, V> org.eclipse.collections.api.map.sorted.MutableSortedMap<K, V> toSortedMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 819
            invokestatic org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.newMap:()Lorg/eclipse/collections/impl/map/sorted/mutable/TreeSortedMap;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.collectKeysAndValues:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <K, V> org.eclipse.collections.api.map.sorted.MutableSortedMap<K, V> toSortedMap(java.util.Comparator<? super K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Comparator comparator
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 828
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.newMap:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/map/sorted/mutable/TreeSortedMap;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.collectKeysAndValues:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1     comparator  Ljava/util/Comparator<-TK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/util/Comparator<-TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      comparator     
      keyFunction    
      valueFunction  

  public <KK extends java.lang.Comparable<? super KK>, K, V> org.eclipse.collections.api.map.sorted.MutableSortedMap<K, V> toSortedMapBy(org.eclipse.collections.api.block.function.Function<? super K, KK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function sortBy
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 837
            aload 1 /* sortBy */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            astore 4 /* comparator */
        start local 4 // org.eclipse.collections.api.block.SerializableComparator comparator
         1: .line 838
            aload 4 /* comparator */
            invokestatic org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.newMap:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/map/sorted/mutable/TreeSortedMap;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.collectKeysAndValues:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 4 // org.eclipse.collections.api.block.SerializableComparator comparator
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // org.eclipse.collections.api.block.function.Function sortBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1         sortBy  Lorg/eclipse/collections/api/block/function/Function<-TK;TKK;>;
            0    2     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    2     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    2     4     comparator  Lorg/eclipse/collections/api/block/SerializableComparator<TK;>;
    Signature: <KK::Ljava/lang/Comparable<-TKK;>;K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TK;TKK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      sortBy         
      keyFunction    
      valueFunction  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> toBiMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends K>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 846
            getstatic org.eclipse.collections.api.factory.BiMaps.mutable:Lorg/eclipse/collections/api/factory/bimap/MutableBiMapFactory;
            invokeinterface org.eclipse.collections.api.factory.bimap.MutableBiMapFactory.empty:()Lorg/eclipse/collections/api/bimap/MutableBiMap;
            astore 3 /* biMap */
        start local 3 // org.eclipse.collections.api.bimap.MutableBiMap biMap
         1: .line 847
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            new org.eclipse.collections.impl.block.procedure.BiMapCollectProcedure
            dup
            aload 3 /* biMap */
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokespecial org.eclipse.collections.impl.block.procedure.BiMapCollectProcedure.<init>:(Lorg/eclipse/collections/api/bimap/MutableBiMap;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)V
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 848
            aload 3 /* biMap */
            areturn
        end local 3 // org.eclipse.collections.api.bimap.MutableBiMap biMap
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    3     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;
            0    3     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     3          biMap  Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

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

  public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 860
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.countWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)I
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 866
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.anySatisfyWith:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 <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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 872
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 <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.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 878
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.utility.Iterate.noneSatisfyWith:(Ljava/lang/Iterable;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.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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 java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 884
            aload 0 /* this */
            ldc "["
            ldc ", "
            ldc "]"
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 890
            aload 0 /* this */
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.appendString:(Ljava/lang/Iterable;Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 891
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2       start  Ljava/lang/String;
            0    2     3   separator  Ljava/lang/String;
            0    2     4         end  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public <V> org.eclipse.collections.api.multimap.MutableMultimap<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/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 897
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupBy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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/MutableMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 905
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupBy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V> org.eclipse.collections.api.multimap.MutableMultimap<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/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 912
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupByEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<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/MutableMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.multimap.MutableMultimap<V, T>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 920
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupByEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V> org.eclipse.collections.api.map.MutableMap<V, T> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 926
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupByUniqueKey:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends org.eclipse.collections.api.map.MutableMapIterable<V, T>> R groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMapIterable target
         0: .line 934
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* function */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupByUniqueKey:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            areturn
        end local 2 // org.eclipse.collections.api.map.MutableMapIterable target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Lorg/eclipse/collections/api/map/MutableMapIterable<TV;TT;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <S> org.eclipse.collections.api.collection.MutableCollection<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.lang.Iterable that
         0: .line 940
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.utility.Iterate.zip:(Ljava/lang/Iterable;Ljava/lang/Iterable;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  that  Ljava/lang/Iterable<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/collection/MutableCollection<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    MethodParameters:
      Name  Flags
      that  

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

  public org.eclipse.collections.api.collection.MutableCollection<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
         0: .line 952
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            invokestatic org.eclipse.collections.impl.utility.Iterate.zipWithIndex:(Ljava/lang/Iterable;)Ljava/util/Collection;
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.wrap:(Ljava/util/Collection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/collection/MutableCollection<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;

  public <R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>>> R zipWithIndex();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // java.util.Collection target
         0: .line 958
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.getDelegate:()Ljava/util/Collection;
            aload 1 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.zipWithIndex:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<T>> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
        start local 1 // int size
         0: .line 964
            aload 0 /* this */
            iload 1 /* size */
            invokestatic org.eclipse.collections.impl.utility.internal.MutableCollectionIterate.chunk:(Lorg/eclipse/collections/api/collection/MutableCollection;I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TT;>;>;
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByInt(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.bag.Bag countBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.countBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/IntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LongIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ByteIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag countByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.countByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByLong(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/DoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            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.collection.mutable.AbstractCollectionAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
            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.collection.mutable.AbstractCollectionAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ShortIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.FloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/FloatIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            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.collection.mutable.AbstractCollectionAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByDouble(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByFloat(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.function.Function2
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.bag.Bag countByWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.countByWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.procedure.Procedure2
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
SourceFile: "AbstractCollectionAdapter.java"