public final class org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> extends org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter<T> implements java.io.Serializable, org.eclipse.collections.api.set.sorted.MutableSortedSet<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter
  super_class: org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final java.util.SortedSet<T> delegate;
    descriptor: Ljava/util/SortedSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/SortedSet<TT;>;

  void <init>(java.util.SortedSet<T>);
    descriptor: (Ljava/util/SortedSet;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.util.SortedSet newDelegate
         0: .line 105
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.collection.mutable.AbstractCollectionAdapter.<init>:()V
         1: .line 107
            aload 1 /* newDelegate */
            ifnonnull 3
         2: .line 109
            new java.lang.NullPointerException
            dup
            ldc "SortedSetAdapter may not wrap null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 111
      StackMap locals: org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter java.util.SortedSet
      StackMap stack:
            aload 0 /* this */
            aload 1 /* newDelegate */
            putfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
         4: .line 112
            return
        end local 1 // java.util.SortedSet newDelegate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    5     1  newDelegate  Ljava/util/SortedSet<TT;>;
    Signature: (Ljava/util/SortedSet<TT;>;)V
    MethodParameters:
             Name  Flags
      newDelegate  

  protected java.util.SortedSet<T> getDelegate();
    descriptor: ()Ljava/util/SortedSet;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 117
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Ljava/util/SortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> asUnmodifiable();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 123
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.UnmodifiableSortedSet.of:(Ljava/util/SortedSet;)Lorg/eclipse/collections/impl/set/sorted/mutable/UnmodifiableSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> asSynchronized();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 129
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.SynchronizedSortedSet.of:(Ljava/util/SortedSet;)Lorg/eclipse/collections/impl/set/sorted/mutable/SynchronizedSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.ImmutableSortedSet<T> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/ImmutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 135
            getstatic org.eclipse.collections.api.factory.SortedSets.immutable:Lorg/eclipse/collections/api/factory/set/sorted/ImmutableSortedSetFactory;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface org.eclipse.collections.api.factory.set.sorted.ImmutableSortedSetFactory.withSortedSet:(Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/ImmutableSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/ImmutableSortedSet<TT;>;

  public static <T> org.eclipse.collections.api.set.sorted.MutableSortedSet<T> adapt(java.util.SortedSet<T>);
    descriptor: (Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.SortedSet set
         0: .line 140
            aload 0 /* set */
            instanceof org.eclipse.collections.api.set.sorted.MutableSortedSet
            ifeq 2
         1: .line 142
            aload 0 /* set */
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
         2: .line 144
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter
            dup
            aload 0 /* set */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.<init>:(Ljava/util/SortedSet;)V
            areturn
        end local 0 // java.util.SortedSet set
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   set  Ljava/util/SortedSet<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/SortedSet<TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      set   

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> clone();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 150
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object o
         0: .line 156
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* o */
            invokeinterface java.util.SortedSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.util.Collection collection
         0: .line 162
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* collection */
            invokeinterface java.util.SortedSet.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean equals(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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object obj
         0: .line 168
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* obj */
            invokeinterface java.util.SortedSet.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 174
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.hashCode:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;

  public org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object element
         0: .line 180
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.add:(Ljava/lang/Object;)Z
            pop
         1: .line 181
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    MethodParameters:
         Name  Flags
      element  

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

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

  public org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object[] elements
         0: .line 201
            aload 1 /* elements */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokestatic org.eclipse.collections.impl.block.procedure.CollectionAddProcedure.on:(Ljava/util/Collection;)Lorg/eclipse/collections/impl/block/procedure/CollectionAddProcedure;
            invokestatic org.eclipse.collections.impl.utility.ArrayIterate.forEach:([Ljava/lang/Object;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 202
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  elements  [Ljava/lang/Object;
    Signature: ([TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> without(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object element
         0: .line 208
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.remove:(Ljava/lang/Object;)Z
            pop
         1: .line 209
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  element  TT;
    Signature: (TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 215
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.addAllIterable:(Ljava/lang/Iterable;)Z
            pop
         1: .line 216
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter<T> withoutAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Iterable elements
         0: .line 222
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.removeAllIterable:(Ljava/lang/Iterable;)Z
            pop
         1: .line 223
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable elements
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  elements  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> newEmpty();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 233
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public boolean removeAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Iterable iterable
         0: .line 239
            aload 0 /* this */
            aload 1 /* iterable */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterate.removeAllIterable:(Ljava/util/Set;Ljava/lang/Iterable;)Z
            ireturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 245
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 246
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 252
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.select:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 258
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.reject:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> partition(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 264
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokespecial org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet.<init>:(Ljava/util/Comparator;)V
            astore 2 /* partitionMutableSortedSet */
        start local 2 // org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet partitionMutableSortedSet
         1: .line 265
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* partitionMutableSortedSet */
            invokespecial org.eclipse.collections.impl.block.procedure.PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 266
            aload 2 /* partitionMutableSortedSet */
            areturn
        end local 2 // org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet partitionMutableSortedSet
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    3     0                       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1                  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    3     2  partitionMutableSortedSet  Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<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/set/sorted/PartitionMutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 272
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokespecial org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet.<init>:(Ljava/util/Comparator;)V
            astore 3 /* partitionMutableSortedSet */
        start local 3 // org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet partitionMutableSortedSet
         1: .line 273
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure
            dup
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* partitionMutableSortedSet */
            invokespecial org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 274
            aload 3 /* partitionMutableSortedSet */
            areturn
        end local 3 // org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet partitionMutableSortedSet
        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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    3     0                       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1                  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    3     2                  parameter  TP;
            1    3     3  partitionMutableSortedSet  Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet<TT;>;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;TP;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet<T> partitionWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 280
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokespecial org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet.<init>:(Ljava/util/Comparator;)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet result
         1: .line 281
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* result */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.partitionWhile:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
            checkcast org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet
            areturn
        end local 2 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    2     2     result  Lorg/eclipse/collections/impl/partition/set/sorted/PartitionTreeSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> takeWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 287
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet result
         1: .line 288
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* result */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.takeWhile:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/collection/MutableCollection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    2     2     result  Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> dropWhile(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 294
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet result
         1: .line 295
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* result */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.dropWhile:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/collection/MutableCollection;)Lorg/eclipse/collections/api/collection/MutableCollection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    2     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    2     2     result  Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <S> org.eclipse.collections.api.set.sorted.MutableSortedSet<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Class clazz
         0: .line 301
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet result
         1: .line 302
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure
            dup
            aload 1 /* clazz */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure.<init>:(Ljava/lang/Class;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 303
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet result
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1   clazz  Ljava/lang/Class<TS;>;
            1    3     2  result  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <V> org.eclipse.collections.api.list.MutableList<V> collect(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 309
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic org.eclipse.collections.impl.utility.Iterate.collect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.list.primitive.MutableBooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 315
            new org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList result
         1: .line 316
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure
            dup
            aload 1 /* booleanFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 317
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;
            1    3     2           result  Lorg/eclipse/collections/impl/list/mutable/primitive/BooleanArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public org.eclipse.collections.api.list.primitive.MutableByteList collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 323
            new org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList result
         1: .line 324
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure
            dup
            aload 1 /* byteFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 325
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;
            1    3     2        result  Lorg/eclipse/collections/impl/list/mutable/primitive/ByteArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableByteList;
    MethodParameters:
              Name  Flags
      byteFunction  

  public org.eclipse.collections.api.list.primitive.MutableCharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 331
            new org.eclipse.collections.impl.list.mutable.primitive.CharArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.CharArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.CharArrayList result
         1: .line 332
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure
            dup
            aload 1 /* charFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 333
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.CharArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;
            1    3     2        result  Lorg/eclipse/collections/impl/list/mutable/primitive/CharArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
    MethodParameters:
              Name  Flags
      charFunction  

  public org.eclipse.collections.api.list.primitive.MutableDoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 339
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList result
         1: .line 340
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure
            dup
            aload 1 /* doubleFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 341
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;
            1    3     2          result  Lorg/eclipse/collections/impl/list/mutable/primitive/DoubleArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public org.eclipse.collections.api.list.primitive.MutableFloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 347
            new org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList result
         1: .line 348
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure
            dup
            aload 1 /* floatFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 349
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;
            1    3     2         result  Lorg/eclipse/collections/impl/list/mutable/primitive/FloatArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
    MethodParameters:
               Name  Flags
      floatFunction  

  public org.eclipse.collections.api.list.primitive.MutableIntList collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 355
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.IntArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList result
         1: .line 356
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure
            dup
            aload 1 /* intFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 357
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.IntArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;
            1    3     2       result  Lorg/eclipse/collections/impl/list/mutable/primitive/IntArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableIntList;
    MethodParameters:
             Name  Flags
      intFunction  

  public org.eclipse.collections.api.list.primitive.MutableLongList collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 363
            new org.eclipse.collections.impl.list.mutable.primitive.LongArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.LongArrayList result
         1: .line 364
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure
            dup
            aload 1 /* longFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 365
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.LongArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;
            1    3     2        result  Lorg/eclipse/collections/impl/list/mutable/primitive/LongArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableLongList;
    MethodParameters:
              Name  Flags
      longFunction  

  public org.eclipse.collections.api.list.primitive.MutableShortList collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 371
            new org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokespecial org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList.<init>:(I)V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList result
         1: .line 372
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure
            dup
            aload 1 /* shortFunction */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 373
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList result
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;
            1    3     2         result  Lorg/eclipse/collections/impl/list/mutable/primitive/ShortArrayList;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TT;>;)Lorg/eclipse/collections/api/list/primitive/MutableShortList;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <V> org.eclipse.collections.api.list.MutableList<V> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter 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 381
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectIf:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <V> org.eclipse.collections.api.list.MutableList<V> flatCollect(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 387
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic org.eclipse.collections.impl.utility.Iterate.flatCollect:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public int detectIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 393
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.Iterate.detectIndex:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate;)I
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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 <V> org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap<V, T> groupBy(org.eclipse.collections.api.block.function.Function<? super T, ? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 399
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap.newMultimap:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupBy:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <V> org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap<V, T> groupByEach(org.eclipse.collections.api.block.function.Function<? super T, ? extends java.lang.Iterable<V>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 405
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap.newMultimap:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            invokestatic org.eclipse.collections.impl.utility.Iterate.groupByEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap<TV;TT;>;
    MethodParameters:
          Name  Flags
      function  

  public <P> org.eclipse.collections.api.set.sorted.MutableSortedSet<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/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 411
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.selectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P> org.eclipse.collections.api.set.sorted.MutableSortedSet<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/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 417
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.rejectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, V> org.eclipse.collections.api.list.MutableList<V> collectWith(org.eclipse.collections.api.block.function.Function2<? super T, ? super P, ? extends V>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 423
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* function */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic org.eclipse.collections.impl.utility.Iterate.collectWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TT;-TP;+TV;>;TP;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <S> org.eclipse.collections.api.list.MutableList<org.eclipse.collections.api.tuple.Pair<T, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Iterable that
         0: .line 429
            aload 1 /* that */
            instanceof java.util.Collection
            ifne 1
            aload 1 /* that */
            instanceof org.eclipse.collections.api.RichIterable
            ifeq 4
         1: .line 431
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
            istore 2 /* thatSize */
        start local 2 // int thatSize
         2: .line 432
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            iload 2 /* thatSize */
            invokestatic java.lang.Math.min:(II)I
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:(I)Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 3 /* target */
        start local 3 // org.eclipse.collections.impl.list.mutable.FastList target
         3: .line 433
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* that */
            aload 3 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.zip:(Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 3 // org.eclipse.collections.impl.list.mutable.FastList target
        end local 2 // int thatSize
         4: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            invokestatic org.eclipse.collections.impl.utility.Iterate.zip:(Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.list.MutableList
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    5     1      that  Ljava/lang/Iterable<TS;>;
            2    4     2  thatSize  I
            3    4     3    target  Lorg/eclipse/collections/impl/list/mutable/FastList<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/tuple/Pair<TT;TS;>;>;
    MethodParameters:
      Name  Flags
      that  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 441
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            astore 1 /* comparator */
        start local 1 // java.util.Comparator comparator
         1: .line 442
            aload 1 /* comparator */
            ifnonnull 4
         2: .line 444
            invokestatic org.eclipse.collections.impl.block.factory.Functions.firstOfPair:()Lorg/eclipse/collections/api/block/function/Function;
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.naturalOrder:()Lorg/eclipse/collections/api/block/SerializableComparator;
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Comparator;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* pairs */
        start local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet pairs
         3: .line 445
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 2 /* pairs */
            invokestatic org.eclipse.collections.impl.utility.Iterate.zipWithIndex:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet pairs
         4: .line 447
      StackMap locals: java.util.Comparator
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFirstOfPair:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.zipWithIndex:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            1    5     1  comparator  Ljava/util/Comparator<-TT;>;
            3    4     2       pairs  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> distinct();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 453
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public <S> boolean corresponds(org.eclipse.collections.api.ordered.OrderedIterable<S>, org.eclipse.collections.api.block.predicate.Predicate2<? super T, ? super S>);
    descriptor: (Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 459
            aload 0 /* this */
            aload 1 /* other */
            aload 2 /* predicate */
            invokestatic org.eclipse.collections.impl.utility.OrderedIterate.corresponds:(Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/ordered/OrderedIterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;)Z
            ireturn
        end local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1      other  Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;
            0    1     2  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;
    Signature: <S:Ljava/lang/Object;>(Lorg/eclipse/collections/api/ordered/OrderedIterable<TS;>;Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TS;>;)Z
    MethodParameters:
           Name  Flags
      other      
      predicate  

  public void forEach(int, int, org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (IILorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 465
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 467
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            if_icmple 3
         2: .line 469
            new java.lang.IllegalArgumentException
            dup
            ldc "fromIndex must not be greater than toIndex"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         4: .line 473
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: .line 474
            goto 10
         6: .line 476
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 6 /* each */
        start local 6 // java.lang.Object each
         7: .line 477
            iload 5 /* i */
            iload 1 /* fromIndex */
            if_icmplt 9
         8: .line 479
            aload 3 /* procedure */
            aload 6 /* each */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         9: .line 481
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 5 /* i */ 1
        end local 6 // java.lang.Object each
        10: .line 474
      StackMap locals:
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 11
            iload 5 /* i */
            iload 2 /* toIndex */
            if_icmple 6
        11: .line 483
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int i
        end local 4 // java.util.Iterator iterator
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0   12     1  fromIndex  I
            0   12     2    toIndex  I
            0   12     3  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            4   12     4   iterator  Ljava/util/Iterator<TT;>;
            5   12     5          i  I
            7   10     6       each  TT;
    Signature: (IILorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    
      procedure  

  public void forEachWithIndex(int, int, org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T>);
    descriptor: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 488
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 490
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            if_icmple 3
         2: .line 492
            new java.lang.IllegalArgumentException
            dup
            ldc "fromIndex must not be greater than toIndex"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         4: .line 496
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: .line 497
            goto 10
         6: .line 499
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 6 /* each */
        start local 6 // java.lang.Object each
         7: .line 500
            iload 5 /* i */
            iload 1 /* fromIndex */
            if_icmplt 9
         8: .line 502
            aload 3 /* objectIntProcedure */
            aload 6 /* each */
            iload 5 /* i */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         9: .line 504
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 5 /* i */ 1
        end local 6 // java.lang.Object each
        10: .line 497
      StackMap locals:
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 11
            iload 5 /* i */
            iload 2 /* toIndex */
            if_icmple 6
        11: .line 506
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int i
        end local 4 // java.util.Iterator iterator
        end local 3 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   12     0                this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0   12     1           fromIndex  I
            0   12     2             toIndex  I
            0   12     3  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
            4   12     4            iterator  Ljava/util/Iterator<TT;>;
            5   12     5                   i  I
            7   10     6                each  TT;
    Signature: (IILorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
                    Name  Flags
      fromIndex           
      toIndex             
      objectIntProcedure  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> union(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 511
            aload 0 /* this */
            aload 1 /* set */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.unionInto:(Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1   set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      set   

  public <R extends java.util.Set<T>> R unionInto(org.eclipse.collections.api.set.SetIterable<? extends T>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 517
            aload 0 /* this */
            aload 1 /* set */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.unionInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1        set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
            0    1     2  targetSet  TR;
    Signature: <R::Ljava/util/Set<TT;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      set        
      targetSet  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> intersect(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 523
            aload 0 /* this */
            aload 1 /* set */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.intersectInto:(Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1   set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      set   

  public <R extends java.util.Set<T>> R intersectInto(org.eclipse.collections.api.set.SetIterable<? extends T>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 529
            aload 0 /* this */
            aload 1 /* set */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.intersectInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1        set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
            0    1     2  targetSet  TR;
    Signature: <R::Ljava/util/Set<TT;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      set        
      targetSet  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> difference(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
         0: .line 535
            aload 0 /* this */
            aload 1 /* subtrahendSet */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.differenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  subtrahendSet  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
               Name  Flags
      subtrahendSet  

  public <R extends java.util.Set<T>> R differenceInto(org.eclipse.collections.api.set.SetIterable<? extends T>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        start local 2 // java.util.Set targetSet
         0: .line 541
            aload 0 /* this */
            aload 1 /* subtrahendSet */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.differenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  subtrahendSet  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
            0    1     2      targetSet  TR;
    Signature: <R::Ljava/util/Set<TT;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TT;>;TR;)TR;
    MethodParameters:
               Name  Flags
      subtrahendSet  
      targetSet      

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> symmetricDifference(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
         0: .line 547
            aload 0 /* this */
            aload 1 /* setB */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.symmetricDifferenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable setB
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  setB  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      setB  

  public <R extends java.util.Set<T>> R symmetricDifferenceInto(org.eclipse.collections.api.set.SetIterable<? extends T>, );
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 553
            aload 0 /* this */
            aload 1 /* set */
            aload 2 /* targetSet */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.symmetricDifferenceInto:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 2 // java.util.Set targetSet
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1        set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
            0    1     2  targetSet  TR;
    Signature: <R::Ljava/util/Set<TT;>;>(Lorg/eclipse/collections/api/set/SetIterable<+TT;>;TR;)TR;
    MethodParameters:
           Name  Flags
      set        
      targetSet  

  public java.util.Comparator<? super T> comparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 559
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.comparator:()Ljava/util/Comparator;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Ljava/util/Comparator<-TT;>;

  public boolean isSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 565
            aload 0 /* this */
            aload 1 /* candidateSuperset */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.isSubsetOf:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  candidateSuperset  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Z
    MethodParameters:
                   Name  Flags
      candidateSuperset  

  public boolean isProperSubsetOf(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 571
            aload 0 /* this */
            aload 1 /* candidateSuperset */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.isProperSubsetOf:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Z
            ireturn
        end local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  candidateSuperset  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Z
    MethodParameters:
                   Name  Flags
      candidateSuperset  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<org.eclipse.collections.api.set.sorted.SortedSetIterable<T>> powerSet();
    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.set.sorted.mutable.SortedSetAdapter this
         0: .line 577
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.internal.SortedSetIterables.powerSet:(Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<Lorg/eclipse/collections/api/set/sorted/SortedSetIterable<TT;>;>;

  public <B> org.eclipse.collections.api.LazyIterable<org.eclipse.collections.api.tuple.Pair<T, B>> cartesianProduct(org.eclipse.collections.api.set.SetIterable<B>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 583
            aload 0 /* this */
            aload 1 /* set */
            invokestatic org.eclipse.collections.impl.utility.internal.SetIterables.cartesianProduct:(Lorg/eclipse/collections/api/set/SetIterable;Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1   set  Lorg/eclipse/collections/api/set/SetIterable<TB;>;
    Signature: <B:Ljava/lang/Object;>(Lorg/eclipse/collections/api/set/SetIterable<TB;>;)Lorg/eclipse/collections/api/LazyIterable<Lorg/eclipse/collections/api/tuple/Pair<TT;TB;>;>;
    MethodParameters:
      Name  Flags
      set   

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> subSet(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object fromElement
        start local 2 // java.lang.Object toElement
         0: .line 589
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* fromElement */
            aload 2 /* toElement */
            invokeinterface java.util.SortedSet.subSet:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.adapt:(Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 2 // java.lang.Object toElement
        end local 1 // java.lang.Object fromElement
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  fromElement  TT;
            0    1     2    toElement  TT;
    Signature: (TT;TT;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
             Name  Flags
      fromElement  
      toElement    

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> headSet(T);
    descriptor: (Ljava/lang/Object;)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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object toElement
         0: .line 595
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* toElement */
            invokeinterface java.util.SortedSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.adapt:(Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // java.lang.Object toElement
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  toElement  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      toElement  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> tailSet(T);
    descriptor: (Ljava/lang/Object;)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.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object fromElement
         0: .line 601
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* fromElement */
            invokeinterface java.util.SortedSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.adapt:(Ljava/util/SortedSet;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
        end local 1 // java.lang.Object fromElement
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  fromElement  TT;
    Signature: (TT;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
             Name  Flags
      fromElement  

  public T first();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 607
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.isEmpty:()Z
            ifeq 2
         1: .line 609
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.first:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()TT;

  public T last();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 617
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.isEmpty:()Z
            ifeq 2
         1: .line 619
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 621
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.last:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()TT;

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.lang.Object object
         0: .line 627
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* object */
            invokeinterface java.util.SortedSet.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 629
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.delegate:Ljava/util/SortedSet;
            aload 1 /* object */
            invokeinterface java.util.SortedSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.size:()I
            ireturn
         2: .line 631
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    3     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  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.set.sorted.mutable.SortedSetAdapter this
         0: .line 637
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.first:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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.set.sorted.mutable.SortedSetAdapter this
         0: .line 643
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.last:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()TT;

  public int compareTo(org.eclipse.collections.api.set.sorted.SortedSetIterable<T>);
    descriptor: (Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.set.sorted.SortedSetIterable o
         0: .line 649
            aload 0 /* this */
            aload 1 /* o */
            invokestatic org.eclipse.collections.impl.utility.internal.SortedSetIterables.compare:(Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;)I
            ireturn
        end local 1 // org.eclipse.collections.api.set.sorted.SortedSetIterable o
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1     o  Lorg/eclipse/collections/api/set/sorted/SortedSetIterable<TT;>;
    Signature: (Lorg/eclipse/collections/api/set/sorted/SortedSetIterable<TT;>;)I
    MethodParameters:
      Name  Flags
      o     

  public org.eclipse.collections.api.set.sorted.ParallelSortedSetIterable<T> asParallel(java.util.concurrent.ExecutorService, int);
    descriptor: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/sorted/ParallelSortedSetIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // java.util.concurrent.ExecutorService executorService
        start local 2 // int batchSize
         0: .line 655
            aload 1 /* executorService */
            ifnonnull 2
         1: .line 657
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 659
      StackMap locals:
      StackMap stack:
            iload 2 /* batchSize */
            iconst_1
            if_icmpge 4
         3: .line 661
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 663
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.lazy.parallel.set.sorted.NonParallelSortedSetIterable
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.parallel.set.sorted.NonParallelSortedSetIterable.<init>:(Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;)V
            areturn
        end local 2 // int batchSize
        end local 1 // java.util.concurrent.ExecutorService executorService
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    5     1  executorService  Ljava/util/concurrent/ExecutorService;
            0    5     2        batchSize  I
    Signature: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/sorted/ParallelSortedSetIterable<TT;>;
    MethodParameters:
                 Name  Flags
      executorService  
      batchSize        

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> toReversed();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 669
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".toReversed() not implemented yet"
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> take(int);
    descriptor: (I)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // int count
         0: .line 675
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.getDelegate:()Ljava/util/SortedSet;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.size:()I
            iload 1 /* count */
            invokestatic java.lang.Math.min:(II)I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.take:(Ljava/lang/Iterable;ILjava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<T> drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // int count
         0: .line 681
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.getDelegate:()Ljava/util/SortedSet;
            iload 1 /* count */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.comparator:()Ljava/util/Comparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.drop:(Ljava/lang/Iterable;ILjava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.sorted.MutableSortedSet
            areturn
        end local 1 // int count
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  count  I
    Signature: (I)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
    MethodParameters:
       Name  Flags
      count  

  public void reverseForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 687
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".reverseForEach() not implemented yet"
            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.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     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 reverseForEachWithIndex(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=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure procedure
         0: .line 693
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".reverseForEachWithIndex() not implemented yet"
            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.procedure.primitive.ObjectIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
            0    1     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.LazyIterable<T> asReversed();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
         0: .line 699
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".asReversed() not implemented yet"
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<TT;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TT;>;

  public int detectLastIndex(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 705
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ".detectLastIndex() not implemented yet"
            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.set.sorted.mutable.SortedSetAdapter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter<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 org.eclipse.collections.api.ordered.OrderedIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

  public org.eclipse.collections.api.set.ImmutableSetIterable toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.toImmutable:()Lorg/eclipse/collections/api/set/sorted/ImmutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.collection.MutableCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.set.sorted.mutable.SortedSetAdapter.newEmpty:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.MutableSetIterable withoutAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.MutableSortedSet withoutAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    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.set.sorted.mutable.SortedSetAdapter.withoutAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.util.Collection getDelegate();
    descriptor: ()Ljava/util/Collection;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.getDelegate:()Ljava/util/SortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable union(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.union:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable union(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.union:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable dropWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.dropWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.clone:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

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

  public org.eclipse.collections.api.set.MutableSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.zipWithIndex:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.OrderedIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            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.set.sorted.mutable.SortedSetAdapter.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.toReversed:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable toReversed();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.toReversed:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.primitive.OrderedCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedCharIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleCharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleCharIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.CharList collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/CharList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableCharCollection collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/list/primitive/MutableCharList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.ParallelSetIterable asParallel(java.util.concurrent.ExecutorService, int);
    descriptor: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/ParallelSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            iload 2
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.asParallel:(Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/sorted/ParallelSortedSetIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

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

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

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

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

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable powerSet();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.powerSet:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable 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/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable 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/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.SortedIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable 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/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

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

  public org.eclipse.collections.api.partition.set.PartitionSet partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionSet;
    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.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.set.PartitionMutableSetIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/PartitionMutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.partition.ordered.PartitionSortedIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionSortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.partition.set.sorted.PartitionSortedSet partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionSortedSet;
    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.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionMutableCollection partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable symmetricDifference(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.symmetricDifference:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable symmetricDifference(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.symmetricDifference:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.MutableSetIterable without(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.MutableSortedSet without(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.without:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.set.sorted.mutable.SortedSetAdapter.asSynchronized:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable difference(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.difference:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable difference(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.difference:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleDoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.DoubleList collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/DoubleList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/list/primitive/MutableDoubleList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.SetIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.set.MutableSetIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/MutableSetIterableMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ordered.OrderedIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/OrderedIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.multimap.ordered.ReversibleIterableMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/ReversibleIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.sortedset.SortedSetMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/sortedset/SortedSetMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/sortedset/MutableSortedSetMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.OrderedIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.SetIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable takeWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.takeWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

  public org.eclipse.collections.api.set.SetIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.SortedIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedFloatIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleFloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleFloatIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.FloatList collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/FloatList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableFloatCollection collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/list/primitive/MutableFloatList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.multimap.set.MutableSetIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/set/MutableSetIterableMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.ordered.OrderedIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/OrderedIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.multimap.ordered.ReversibleIterableMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/ordered/ReversibleIterableMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.sortedset.SortedSetMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/sortedset/SortedSetMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.sortedset.MutableSortedSetMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/sortedset/MutableSortedSetMultimap;
    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.set.sorted.mutable.SortedSetAdapter.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/impl/multimap/set/sorted/TreeSortedSetMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.SetIterable 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/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable 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/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.SortedIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable 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/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.OrderedIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.distinct:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.SortedIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.distinct:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.distinct:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable distinct();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.distinct:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.set.PartitionSet 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/set/PartitionSet;
    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.set.sorted.mutable.SortedSetAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.set.PartitionMutableSetIterable 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/set/PartitionMutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.partition.set.sorted.PartitionSortedSet 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/set/sorted/PartitionSortedSet;
    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.set.sorted.mutable.SortedSetAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionMutableCollection partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionMutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable 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/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable 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/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable 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/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.MutableSetIterable withAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.MutableSortedSet withAll(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    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.set.sorted.mutable.SortedSetAdapter.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.MutableSetIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.SortedIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/ordered/SortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.set.sorted.mutable.SortedSetAdapter.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.OrderedBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/ordered/primitive/OrderedBooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.primitive.ReversibleBooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/ordered/primitive/ReversibleBooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.primitive.BooleanList collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/BooleanList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableBooleanCollection collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/list/primitive/MutableBooleanList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.ordered.OrderedIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public java.util.SortedSet subSet(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.subSet:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.SortedSet headSet(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.headSet:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.MutableSetIterable with(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/MutableSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.MutableSortedSet with(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.with:(Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.list.ListIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/ListIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.ReversibleIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/ReversibleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ordered.OrderedIterable collectWithIndex(org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/ordered/OrderedIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction
            invokeinterface org.eclipse.collections.api.set.sorted.MutableSortedSet.collectWithIndex:(Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable intersect(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/SetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.intersect:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.sorted.SortedSetIterable intersect(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    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.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.intersect:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    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.set.sorted.SortedSetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.compareTo:(Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.SortedSetIterable drop(int);
    descriptor: (I)Lorg/eclipse/collections/api/set/sorted/SortedSetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.drop:(I)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.SortedSet tailSet(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.SortedSetAdapter.tailSet:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/MutableCollection;
    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.set.sorted.mutable.SortedSetAdapter.asUnmodifiable:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.partition.ordered.PartitionSortedIterable partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/ordered/PartitionSortedIterable;
    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.set.sorted.mutable.SortedSetAdapter.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.partition.set.sorted.PartitionSortedSet partitionWhile(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionSortedSet;
    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.set.sorted.mutable.SortedSetAdapter.partitionWhile:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/set/sorted/PartitionMutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/collection/mutable/AbstractCollectionAdapter<TT;>;Ljava/io/Serializable;Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
SourceFile: "SortedSetAdapter.java"