public class org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection<T> implements org.eclipse.collections.api.collection.MutableCollection<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection
  super_class: java.lang.Object
{
  private final org.eclipse.collections.api.collection.MutableCollection<? extends T> collection;
    descriptor: Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/collection/MutableCollection<+TT;>;

  protected void <init>(org.eclipse.collections.api.collection.MutableCollection<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/collection/MutableCollection;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.collection.MutableCollection mutableCollection
         0: .line 86
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 88
            aload 1 /* mutableCollection */
            ifnonnull 3
         2: .line 90
            new java.lang.NullPointerException
            dup
            ldc "cannot create a UnmodifiableMutableCollection for null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 92
      StackMap locals: org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection org.eclipse.collections.api.collection.MutableCollection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* mutableCollection */
            putfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
         4: .line 93
            return
        end local 1 // org.eclipse.collections.api.collection.MutableCollection mutableCollection
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    5     1  mutableCollection  Lorg/eclipse/collections/api/collection/MutableCollection<+TT;>;
    Signature: (Lorg/eclipse/collections/api/collection/MutableCollection<+TT;>;)V
    MethodParameters:
                   Name  Flags
      mutableCollection  

  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.AbstractUnmodifiableMutableCollection this
         0: .line 98
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.isEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object o
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* o */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 116
            new org.eclipse.collections.impl.UnmodifiableIteratorAdapter
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.iterator:()Ljava/util/Iterator;
            invokespecial org.eclipse.collections.impl.UnmodifiableIteratorAdapter.<init>:(Ljava/util/Iterator;)V
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;

  public <S> S[] 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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object[] a
         0: .line 128
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* a */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <S:Ljava/lang/Object;>([TS;)[TS;
    MethodParameters:
      Name  Flags
      a     

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object o
         0: .line 134
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call add() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object o
         0: .line 140
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call remove() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection c
         0: .line 146
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* c */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection<? extends T>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection c
         0: .line 152
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call addAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     c  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection c
         0: .line 158
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call retainAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection c
         0: .line 164
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call removeAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 170
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call clear() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;

  protected org.eclipse.collections.api.collection.MutableCollection<T> getMutableCollection();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 175
            aload 0 /* this */
            getfield org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.collection:Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;

  public boolean addAllIterable(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable iterable
         0: .line 181
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call addAllIterable() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public boolean removeAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable iterable
         0: .line 187
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call removeAllIterable() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public boolean retainAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable iterable
         0: .line 193
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call retainAllIterable() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

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

  public org.eclipse.collections.api.collection.MutableCollection<T> asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 205
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.collection.mutable.SynchronizedMutableCollection.of:(Ljava/util/Collection;)Lorg/eclipse/collections/impl/collection/mutable/SynchronizedMutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;

  public org.eclipse.collections.api.collection.ImmutableCollection<T> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 211
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toImmutable:()Lorg/eclipse/collections/api/collection/ImmutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/collection/ImmutableCollection<TT;>;

  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.AbstractUnmodifiableMutableCollection this
         0: .line 217
            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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 223
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 224
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 230
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 231
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 236
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* objectIntProcedure */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         1: .line 237
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    2     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 242
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* procedure */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         1: .line 243
            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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable source
         0: .line 248
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.containsAllIterable:(Ljava/lang/Iterable;)Z
            ireturn
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object[] elements
         0: .line 254
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* elements */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.containsAllArguments:([Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  elements  [Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      elements  

  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.AbstractUnmodifiableMutableCollection this
         0: .line 260
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.notEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;

  public org.eclipse.collections.api.collection.MutableCollection<T> newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 266
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.newEmpty:()Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/collection/MutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 272
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.getFirst:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 278
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.getLast:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 284
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.getOnly:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()TT;

  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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 290
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 296
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.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=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 302
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 311
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2         parameter  TP;
            0    1     3  targetCollection  TR;
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public org.eclipse.collections.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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 317
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 323
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2     target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.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=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 329
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 338
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 346
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.selectAndRejectWith:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 352
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 358
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Class clazz
         0: .line 364
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* clazz */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 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=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 370
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call removeIf() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 376
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call removeIfWith() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 382
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collect:(Lorg/eclipse/collections/api/block/function/Function;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* booleanFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectBoolean:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* booleanFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R flatCollectBoolean(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.BooleanIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 401
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectBoolean:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/BooleanIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/BooleanIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 407
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* byteFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectByte:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 413
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* byteFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R flatCollectByte(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.ByteIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 420
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectByte:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ByteIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ByteIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 426
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* charFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectChar:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 432
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* charFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R flatCollectChar(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.CharIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 439
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectChar:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/CharIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/CharIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 445
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* doubleFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectDouble:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 451
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* doubleFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R flatCollectDouble(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.DoubleIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 458
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectDouble:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/DoubleIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/DoubleIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 464
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* floatFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectFloat:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 470
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* floatFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R flatCollectFloat(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.FloatIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 477
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectFloat:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/FloatIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/FloatIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 483
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* intFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectInt:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 489
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* intFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R flatCollectInt(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.IntIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 496
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectInt:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/IntIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/IntIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 502
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* longFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectLong:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 508
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* longFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R flatCollectLong(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.LongIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 515
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectLong:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/LongIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/LongIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public org.eclipse.collections.api.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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 521
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* shortFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectShort:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 527
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* shortFunction */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R flatCollectShort(org.eclipse.collections.api.block.function.Function<? super T, ? extends org.eclipse.collections.api.ShortIterable>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 534
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollectShort:(Lorg/eclipse/collections/api/block/function/Function;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.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ShortIterable;>;
            0    1     2    target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Lorg/eclipse/collections/api/ShortIterable;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <V, R extends java.util.Collection<V>> R collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 540
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 546
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 552
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            0    1     2    target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <P, A> org.eclipse.collections.api.collection.MutableCollection<A> 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;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 558
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;A:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TA;>;TP;)Lorg/eclipse/collections/api/collection/MutableCollection<TA;>;
    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.AbstractUnmodifiableMutableCollection 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 567
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* parameter */
            aload 3 /* targetCollection */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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 <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=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 575
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 584
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* function */
            aload 3 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            0    1     3     target  TR;
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public T detect(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 590
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 596
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 602
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detectOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 608
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detectWithOptional:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Ljava/util/Optional<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public T detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 614
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detectIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> T detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 623
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.detectWithIfNone:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
            0    1     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TT;>;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TT;>;)TT;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public 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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Comparator comparator
         0: .line 629
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.min:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Comparator comparator
         0: .line 635
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.max:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 641
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.min:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 647
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.max:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 653
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.minBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 659
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.maxBy:(Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 665
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.count:(Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)I
    MethodParameters:
           Name  Flags
      predicate  

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

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 677
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.anySatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 689
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.allSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 695
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.allSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 701
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.noneSatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 707
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.noneSatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super T, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 713
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
         0: .line 719
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            iload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectInto:(ILorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
         0: .line 725
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            lload 1 /* injectedValue */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectInto:(JLorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
         0: .line 731
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            dload 1 /* injectedValue */
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectInto:(DLorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
         0: .line 737
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            fload 1 /* injectedValue */
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectInto:(FLorg/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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 743
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.sumOfInt:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 749
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.sumOfFloat:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 755
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.sumOfLong:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 761
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.sumOfDouble:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection 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 767
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectLongMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectLongMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectLongMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 768
            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.AbstractUnmodifiableMutableCollection.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.api.map.primitive.MutableObjectLongMap 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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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/api/map/primitive/MutableObjectLongMap<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.AbstractUnmodifiableMutableCollection 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 774
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 775
            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.AbstractUnmodifiableMutableCollection.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.api.map.primitive.MutableObjectDoubleMap 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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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/api/map/primitive/MutableObjectDoubleMap<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.AbstractUnmodifiableMutableCollection 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 781
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectLongMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectLongMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectLongMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 782
            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.AbstractUnmodifiableMutableCollection.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.api.map.primitive.MutableObjectLongMap 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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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/api/map/primitive/MutableObjectLongMap<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.AbstractUnmodifiableMutableCollection 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 788
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 789
            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.AbstractUnmodifiableMutableCollection.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.api.map.primitive.MutableObjectDoubleMap 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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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/api/map/primitive/MutableObjectDoubleMap<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 <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.AbstractUnmodifiableMutableCollection 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 798
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* injectValue */
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.injectIntoWith:(Ljava/lang/Object;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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection target
         0: .line 804
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.into:(Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<TT;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.list.MutableList<T> toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 810
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toList:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TT;>;

  public org.eclipse.collections.api.list.MutableList<T> toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 816
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedList:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Comparator comparator
         0: .line 822
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedList:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 828
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            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;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 834
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedSet:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Comparator comparator
         0: .line 840
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 846
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedSetBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 852
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSet:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 858
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toBag:()Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
         0: .line 864
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedBag:()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Comparator comparator
         0: .line 870
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 876
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            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;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V::Ljava/lang/Comparable<-TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <NK, NV> org.eclipse.collections.api.map.MutableMap<NK, NV> toMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 884
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/MutableMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV, R extends java.util.Map<NK, NV>> R toMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Map;)Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 893
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            aload 3 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Map;)Ljava/util/Map;
            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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
            0    1     3         target  TR;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;R::Ljava/util/Map<TNK;TNV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  
      target         

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 901
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(java.util.Comparator<? super NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 910
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* comparator */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedMap:(Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1     comparator  Ljava/util/Comparator<-TNK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Ljava/util/Comparator<-TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      comparator     
      keyFunction    
      valueFunction  

  public <KK extends java.lang.Comparable<? super KK>, NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMapBy(org.eclipse.collections.api.block.function.Function<? super NK, KK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 919
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* sortBy */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toSortedMapBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // org.eclipse.collections.api.block.function.Function sortBy
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1         sortBy  Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <KK::Ljava/lang/Comparable<-TKK;>;NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      sortBy         
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.bimap.MutableBiMap<NK, NV> toBiMap(org.eclipse.collections.api.block.function.Function<? super T, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super T, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 925
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toBiMap:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
            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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TNV;>;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 931
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 937
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.makeString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.String separator
         0: .line 943
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* separator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  separator  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 949
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1      start  Ljava/lang/String;
            0    1     2  separator  Ljava/lang/String;
            0    1     3        end  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Appendable appendable
         0: .line 955
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* appendable */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.appendString:(Ljava/lang/Appendable;)V
         1: .line 956
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 961
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* appendable */
            aload 2 /* separator */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 962
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2   separator  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection 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 967
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* appendable */
            aload 2 /* start */
            aload 3 /* separator */
            aload 4 /* end */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 968
            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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 973
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupBy:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 981
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 987
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupByEach:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 995
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1001
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupByUniqueKey:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMapIterable target
         0: .line 1009
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* function */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.groupByUniqueKey:(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.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable that
         0: .line 1015
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* that */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable that
        start local 2 // java.util.Collection target
         0: .line 1021
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* that */
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
         0: .line 1027
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.zipWithIndex:()Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // java.util.Collection target
         0: .line 1033
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            aload 1 /* target */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.AbstractUnmodifiableMutableCollection this
        start local 1 // int size
         0: .line 1039
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection.getMutableCollection:()Lorg/eclipse/collections/api/collection/MutableCollection;
            iload 1 /* size */
            invokeinterface org.eclipse.collections.api.collection.MutableCollection.chunk:(I)Lorg/eclipse/collections/api/RichIterable;
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<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.collection.MutableCollection<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object element
         0: .line 1045
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call with() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.collection.MutableCollection<T> without(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Object element
         0: .line 1051
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call without() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.collection.MutableCollection<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable elements
         0: .line 1057
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call withAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.collection.MutableCollection<T> withoutAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
        start local 1 // java.lang.Iterable elements
         0: .line 1063
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call withoutAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.collection.mutable.AbstractUnmodifiableMutableCollection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/collection/mutable/AbstractUnmodifiableMutableCollection<TT;>;
            0    1     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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.AbstractUnmodifiableMutableCollection.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: "AbstractUnmodifiableMutableCollection.java"