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

  private java.util.TreeSet<T> treeSet;
    descriptor: Ljava/util/TreeSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/TreeSet<TT;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 109
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.collection.mutable.AbstractMutableCollection.<init>:()V
         1: .line 111
            aload 0 /* this */
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         2: .line 112
            return
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

  public void <init>(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Iterable iterable
         0: .line 114
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.collection.mutable.AbstractMutableCollection.<init>:()V
         1: .line 116
            aload 0 /* this */
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         2: .line 117
            aload 0 /* this */
            aload 1 /* iterable */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.addAllIterable:(Ljava/lang/Iterable;)Z
            pop
         3: .line 118
            return
        end local 1 // java.lang.Iterable iterable
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    4     1  iterable  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/lang/Iterable<+TT;>;)V
    MethodParameters:
          Name  Flags
      iterable  

  public void <init>(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.util.Comparator comparator
         0: .line 120
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.collection.mutable.AbstractMutableCollection.<init>:()V
         1: .line 122
            aload 0 /* this */
            new java.util.TreeSet
            dup
            aload 1 /* comparator */
            invokespecial java.util.TreeSet.<init>:(Ljava/util/Comparator;)V
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         2: .line 123
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  comparator  Ljava/util/Comparator<-TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;)V
    MethodParameters:
            Name  Flags
      comparator  

  public void <init>(java.util.SortedSet<T>);
    descriptor: (Ljava/util/SortedSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.util.SortedSet set
         0: .line 125
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.collection.mutable.AbstractMutableCollection.<init>:()V
         1: .line 127
            aload 0 /* this */
            new java.util.TreeSet
            dup
            aload 1 /* set */
            invokespecial java.util.TreeSet.<init>:(Ljava/util/SortedSet;)V
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         2: .line 128
            return
        end local 1 // java.util.SortedSet set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1   set  Ljava/util/SortedSet<TT;>;
    Signature: (Ljava/util/SortedSet<TT;>;)V
    MethodParameters:
      Name  Flags
      set   

  public void <init>(java.util.Comparator<? super T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/util/Comparator;Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.util.Comparator comparator
        start local 2 // java.lang.Iterable iterable
         0: .line 132
            aload 0 /* this */
            aload 1 /* comparator */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:(Ljava/util/Comparator;)V
         1: .line 133
            aload 0 /* this */
            aload 2 /* iterable */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.addAllIterable:(Ljava/lang/Iterable;)Z
            pop
         2: .line 134
            return
        end local 2 // java.lang.Iterable iterable
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  comparator  Ljava/util/Comparator<-TT;>;
            0    3     2    iterable  Ljava/lang/Iterable<+TT;>;
    Signature: (Ljava/util/Comparator<-TT;>;Ljava/lang/Iterable<+TT;>;)V
    MethodParameters:
            Name  Flags
      comparator  
      iterable    

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSet();
    descriptor: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 138
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSet(java.util.Comparator<? super T>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Comparator comparator
         0: .line 143
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            aload 0 /* comparator */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:(Ljava/util/Comparator;)V
            areturn
        end local 0 // java.util.Comparator comparator
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  comparator  Ljava/util/Comparator<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Comparator<-TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
            Name  Flags
      comparator  

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSet(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Iterable source
         0: .line 148
            aload 0 /* source */
            instanceof java.util.SortedSet
            ifeq 2
         1: .line 150
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            aload 0 /* source */
            checkcast java.util.SortedSet
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:(Ljava/util/SortedSet;)V
            areturn
         2: .line 152
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 1 /* sortedSet */
        start local 1 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet sortedSet
         3: .line 153
            aload 0 /* source */
            aload 1 /* 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.Iterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         4: .line 154
            aload 1 /* sortedSet */
            areturn
        end local 1 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet sortedSet
        end local 0 // java.lang.Iterable source
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0     source  Ljava/lang/Iterable<+TT;>;
            3    5     1  sortedSet  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
        Name  Flags
      source  

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSet(java.util.Comparator<? super T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/util/Comparator;Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.Comparator comparator
        start local 1 // java.lang.Iterable iterable
         0: .line 159
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            aload 0 /* comparator */
            aload 1 /* iterable */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:(Ljava/util/Comparator;Ljava/lang/Iterable;)V
            areturn
        end local 1 // java.lang.Iterable iterable
        end local 0 // java.util.Comparator comparator
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  comparator  Ljava/util/Comparator<-TT;>;
            0    1     1    iterable  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Comparator<-TT;>;Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
            Name  Flags
      comparator  
      iterable    

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSetWith(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 164
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:()V
            aload 0 /* elements */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.with:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public static <T> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newSetWith(java.util.Comparator<? super T>, T[]);
    descriptor: (Ljava/util/Comparator;[Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.util.Comparator comparator
        start local 1 // java.lang.Object[] elements
         0: .line 169
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            dup
            aload 0 /* comparator */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.<init>:(Ljava/util/Comparator;)V
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.with:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // java.util.Comparator comparator
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  comparator  Ljava/util/Comparator<-TT;>;
            0    1     1    elements  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Comparator<-TT;>;[TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
            Name  Flags
      comparator  
      elements    

  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.TreeSortedSet this
         0: .line 175
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
         0: .line 181
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;

  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.TreeSortedSet this
        start local 1 // java.util.concurrent.ExecutorService executorService
        start local 2 // int batchSize
         0: .line 188
            aload 1 /* executorService */
            ifnonnull 2
         1: .line 190
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 192
      StackMap locals:
      StackMap stack:
            iload 2 /* batchSize */
            iconst_1
            if_icmpge 4
         3: .line 194
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         4: .line 196
      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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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;>;
    RuntimeInvisibleAnnotations: 
      org.eclipse.collections.api.annotation.Beta()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        org.eclipse.collections.api.annotation.Beta()
    MethodParameters:
                 Name  Flags
      executorService  
      batchSize        

  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.TreeSortedSet this
         0: .line 202
            getstatic org.eclipse.collections.api.factory.SortedSets.immutable:Lorg/eclipse/collections/api/factory/set/sorted/ImmutableSortedSetFactory;
            aload 0 /* this */
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/ImmutableSortedSet<TT;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object element
         0: .line 208
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* element */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  element  TT;
    Signature: (TT;)Z
    MethodParameters:
         Name  Flags
      element  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object element
         0: .line 214
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* element */
            invokevirtual java.util.TreeSet.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  element  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(java.util.Collection<? extends T>);
    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.TreeSortedSet this
        start local 1 // java.util.Collection collection
         0: .line 220
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* collection */
            invokevirtual java.util.TreeSet.addAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  collection  Ljava/util/Collection<+TT;>;
    Signature: (Ljava/util/Collection<+TT;>;)Z
    MethodParameters:
            Name  Flags
      collection  

  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.TreeSortedSet this
        start local 1 // java.lang.Object o
         0: .line 226
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* o */
            invokevirtual java.util.TreeSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.util.Collection collection
         0: .line 232
            aload 1 /* collection */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates2.in:()Lorg/eclipse/collections/impl/block/factory/Predicates2;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokestatic org.eclipse.collections.impl.utility.Iterate.allSatisfyWith:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 238
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.clear:()V
         1: .line 239
            return
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> clone();
    descriptor: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 246
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            astore 1 /* clone */
        start local 1 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet clone
         1: .line 247
            aload 1 /* clone */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.clone:()Ljava/lang/Object;
            checkcast java.util.TreeSet
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         2: .line 248
            aload 1 /* clone */
         3: areturn
        end local 1 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet clone
         4: .line 250
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         5: .line 252
            new java.lang.AssertionError
            dup
            aload 1 /* e */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            1    4     1  clone  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            5    6     1      e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.CloneNotSupportedException
    Signature: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object object
         0: .line 259
            aload 0 /* this */
            aload 1 /* object */
            if_acmpne 2
         1: .line 261
            iconst_1
            ireturn
         2: .line 264
      StackMap locals:
      StackMap stack:
            aload 1 /* object */
            instanceof java.util.Set
            ifne 4
         3: .line 266
            iconst_0
            ireturn
         4: .line 269
      StackMap locals:
      StackMap stack:
            aload 1 /* object */
            checkcast java.util.Set
            astore 2 /* other */
        start local 2 // java.util.Set other
         5: .line 270
            aload 2 /* other */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.util.Set other
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    6     1  object  Ljava/lang/Object;
            5    6     2   other  Ljava/util/Set<*>;
    MethodParameters:
        Name  Flags
      object  

  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.TreeSortedSet this
         0: .line 276
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.hashCode:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

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

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> with(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
         0: .line 288
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* element1 */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         1: .line 289
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 2 /* element2 */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         2: .line 290
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  element1  TT;
            0    3     2  element2  TT;
    Signature: (TT;TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> with(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object element1
        start local 2 // java.lang.Object element2
        start local 3 // java.lang.Object element3
         0: .line 295
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* element1 */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         1: .line 296
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 2 /* element2 */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         2: .line 297
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 3 /* element3 */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         3: .line 298
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/TreeSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      element1  
      element2  
      element3  

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Object[] elements
         0: .line 303
            aload 1 /* elements */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            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 304
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    2     1  elements  [Ljava/lang/Object;
    Signature: ([TT;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
          Name  Flags
      elements  

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

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

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

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> newEmpty();
    descriptor: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 331
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> tap(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 337
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 338
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 344
            aload 0 /* this */
            aload 1 /* procedure */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.forEach:(Ljava/lang/Iterable;Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 345
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> select(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 350
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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 351
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.SelectProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.SelectProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 352
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    3     2     result  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> reject(org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 358
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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 359
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.RejectProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.RejectProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 360
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    3     2     result  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 366
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.comparator:()Ljava/util/Comparator;
            invokespecial org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet.<init>:(Ljava/util/Comparator;)V
            astore 2 /* partitionTreeSortedSet */
        start local 2 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet partitionTreeSortedSet
         1: .line 367
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* partitionTreeSortedSet */
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 368
            aload 2 /* partitionTreeSortedSet */
            areturn
        end local 2 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet partitionTreeSortedSet
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1               predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            1    3     2  partitionTreeSortedSet  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 <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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 374
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.comparator:()Ljava/util/Comparator;
            invokespecial org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet.<init>:(Ljava/util/Comparator;)V
            astore 3 /* partitionTreeSortedSet */
        start local 3 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet partitionTreeSortedSet
         1: .line 375
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure
            dup
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 3 /* partitionTreeSortedSet */
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 376
            aload 3 /* partitionTreeSortedSet */
            areturn
        end local 3 // org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet partitionTreeSortedSet
        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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1               predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TT;-TP;>;
            0    3     2               parameter  TP;
            1    3     3  partitionTreeSortedSet  Lorg/eclipse/collections/impl/partition/set/sorted/PartitionTreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 382
            new org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 383
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 <S> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.lang.Class clazz
         0: .line 389
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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 390
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 391
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet<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=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 397
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         1: .line 398
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.CollectProcedure
            dup
            aload 1 /* function */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.CollectProcedure.<init>:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 399
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     2    result  Lorg/eclipse/collections/api/list/MutableList<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 405
            new org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 406
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 407
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 413
            new org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 414
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 415
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 421
            new org.eclipse.collections.impl.list.mutable.primitive.CharArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 422
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 423
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 429
            new org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 430
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 431
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 437
            new org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 438
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 439
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 445
            new org.eclipse.collections.impl.list.mutable.primitive.IntArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 446
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 447
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 453
            new org.eclipse.collections.impl.list.mutable.primitive.LongArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 454
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 455
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 461
            new org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 462
            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.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 463
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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> 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=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 469
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         1: .line 470
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.FlatCollectProcedure
            dup
            aload 1 /* function */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.FlatCollectProcedure.<init>:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 471
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  function  Lorg/eclipse/collections/api/block/function/Function<-TT;+Ljava/lang/Iterable<TV;>;>;
            1    3     2    result  Lorg/eclipse/collections/api/list/MutableList<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 <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=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet 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 479
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.list.MutableList result
         1: .line 480
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.CollectIfProcedure
            dup
            aload 3 /* result */
            aload 2 /* function */
            aload 1 /* predicate */
            invokespecial org.eclipse.collections.impl.block.procedure.CollectIfProcedure.<init>:(Ljava/util/Collection;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 481
            aload 3 /* result */
            areturn
        end local 3 // org.eclipse.collections.api.list.MutableList result
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    3     2   function  Lorg/eclipse/collections/api/block/function/Function<-TT;+TV;>;
            1    3     3     result  Lorg/eclipse/collections/api/list/MutableList<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 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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 487
            aload 0 /* this */
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 493
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 499
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.impl.set.sorted.mutable.TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 505
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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.impl.set.sorted.mutable.TreeSortedSet
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P> org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* predicate */
            aload 2 /* parameter */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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.impl.set.sorted.mutable.TreeSortedSet
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 517
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // java.lang.Iterable that
         0: .line 523
            aload 1 /* that */
            instanceof java.util.Collection
            ifne 1
            aload 1 /* that */
            instanceof org.eclipse.collections.api.RichIterable
            ifeq 4
         1: .line 525
      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 526
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 527
            aload 0 /* this */
            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 529
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.impl.set.sorted.mutable.TreeSortedSet<org.eclipse.collections.api.tuple.Pair<T, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 535
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.comparator:()Ljava/util/Comparator;
            astore 1 /* comparator */
        start local 1 // java.util.Comparator comparator
         1: .line 536
            aload 1 /* comparator */
            ifnonnull 4
         2: .line 538
            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 539
            aload 0 /* this */
            aload 2 /* pairs */
            invokestatic org.eclipse.collections.impl.utility.Iterate.zipWithIndex:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            areturn
        end local 2 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet pairs
         4: .line 541
      StackMap locals: java.util.Comparator
      StackMap stack:
            aload 0 /* this */
            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.impl.set.sorted.mutable.TreeSortedSet
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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/impl/set/sorted/mutable/TreeSortedSet<Lorg/eclipse/collections/api/tuple/Pair<TT;Ljava/lang/Integer;>;>;

  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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 547
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 548
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 554
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.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 555
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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> 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.TreeSortedSet this
         0: .line 561
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.clone:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.ordered.OrderedIterable other
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
         0: .line 567
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // int fromIndex
        start local 2 // int toIndex
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 573
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.size:()I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 575
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            if_icmple 3
         2: .line 577
            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 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         4: .line 581
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: .line 582
            goto 10
         6: .line 584
      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 585
            iload 5 /* i */
            iload 1 /* fromIndex */
            if_icmplt 9
         8: .line 587
            aload 3 /* procedure */
            aload 6 /* each */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         9: .line 589
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 5 /* i */ 1
        end local 6 // java.lang.Object each
        10: .line 582
      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 591
      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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet 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 596
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.size:()I
            invokestatic org.eclipse.collections.impl.utility.ListIterate.rangeCheck:(III)V
         1: .line 598
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            if_icmple 3
         2: .line 600
            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 603
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         4: .line 604
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: .line 605
            goto 10
         6: .line 607
      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 608
            iload 5 /* i */
            iload 1 /* fromIndex */
            if_icmplt 9
         8: .line 610
            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 612
      StackMap locals: java.lang.Object
      StackMap stack:
            iinc 5 /* i */ 1
        end local 6 // java.lang.Object each
        10: .line 605
      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 614
      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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   12     0                this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 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.TreeSortedSet this
        start local 1 // java.lang.Iterable iterable
         0: .line 619
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  iterable  Ljava/lang/Iterable<*>;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
          Name  Flags
      iterable  

  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.TreeSortedSet this
         0: .line 625
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.comparator:()Ljava/util/Comparator;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()Ljava/util/Comparator<-TT;>;

  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.TreeSortedSet this
        start local 1 // java.lang.Object fromElement
        start local 2 // java.lang.Object toElement
         0: .line 631
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* fromElement */
            aload 2 /* toElement */
            invokevirtual java.util.TreeSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // java.lang.Object toElement
         0: .line 637
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* toElement */
            invokevirtual java.util.TreeSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // java.lang.Object fromElement
         0: .line 643
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* fromElement */
            invokevirtual java.util.TreeSet.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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 649
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.first:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()TT;

  public T last();
    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.TreeSortedSet this
         0: .line 655
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.last:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // java.lang.Object object
         0: .line 661
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* object */
            invokevirtual java.util.TreeSet.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 663
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            aload 1 /* object */
            invokevirtual java.util.TreeSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokeinterface java.util.SortedSet.size:()I
            ireturn
         2: .line 665
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
         0: .line 671
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.first:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
         0: .line 677
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.last:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()TT;

  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.TreeSortedSet this
         0: .line 683
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 689
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.impl.set.sorted.mutable.TreeSortedSet<T> union(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 695
            aload 0 /* this */
            aload 1 /* set */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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;
            checkcast org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1   set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      set   

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> intersect(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
         0: .line 701
            aload 0 /* this */
            aload 1 /* set */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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;
            checkcast org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable set
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1   set  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
      Name  Flags
      set   

  public org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet<T> difference(org.eclipse.collections.api.set.SetIterable<? extends T>);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
         0: .line 707
            aload 0 /* this */
            aload 1 /* subtrahendSet */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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;
            checkcast org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet
            areturn
        end local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  subtrahendSet  Lorg/eclipse/collections/api/set/SetIterable<+TT;>;
    Signature: (Lorg/eclipse/collections/api/set/SetIterable<+TT;>;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    MethodParameters:
               Name  Flags
      subtrahendSet  

  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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable setB
         0: .line 713
            aload 0 /* this */
            aload 1 /* setB */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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;
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 719
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 <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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 725
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 <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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable subtrahendSet
        start local 2 // java.util.Set targetSet
         0: .line 731
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 <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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable set
        start local 2 // java.util.Set targetSet
         0: .line 737
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 743
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.SetIterable candidateSuperset
         0: .line 749
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
         0: .line 755
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

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

  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.TreeSortedSet this
         0: .line 767
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // int count
         0: .line 773
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.size:()I
            iload 1 /* count */
            invokestatic java.lang.Math.min:(II)I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // int count
         0: .line 779
            aload 0 /* this */
            iload 1 /* count */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newEmpty:()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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 785
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure procedure
         0: .line 791
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
         0: .line 797
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 803
            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.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<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 void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.io.ObjectOutput out
         0: .line 809
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.comparator:()Ljava/util/Comparator;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         1: .line 810
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         2: .line 811
            aload 0 /* this */
            new org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet$1
            dup
            aload 0 /* this */
            aload 1 /* out */
            invokespecial org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet$1.<init>:(Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;Ljava/io/ObjectOutput;)V
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         3: .line 818
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    4     1   out  Ljava/io/ObjectOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
        start local 1 // java.io.ObjectInput in
         0: .line 823
            aload 0 /* this */
            new java.util.TreeSet
            dup
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            checkcast java.util.Comparator
            invokespecial java.util.TreeSet.<init>:(Ljava/util/Comparator;)V
            putfield org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.treeSet:Ljava/util/TreeSet;
         1: .line 824
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         2: .line 825
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 827
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.add:(Ljava/lang/Object;)Z
            pop
         5: .line 825
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 4
        end local 3 // int i
         7: .line 829
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    8     1    in  Ljava/io/ObjectInput;
            2    8     2  size  I
            3    7     3     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  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.TreeSortedSet this
        start local 1 // org.eclipse.collections.api.set.sorted.SortedSetIterable otherSet
         0: .line 834
            aload 0 /* this */
            aload 1 /* otherSet */
            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 otherSet
        end local 0 // org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet<TT;>;
            0    1     1  otherSet  Lorg/eclipse/collections/api/set/sorted/SortedSetIterable<TT;>;
    Signature: (Lorg/eclipse/collections/api/set/sorted/SortedSetIterable<TT;>;)I
    MethodParameters:
          Name  Flags
      otherSet  

  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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.newEmpty:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  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.TreeSortedSet.zipWithIndex:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.set.sorted.MutableSortedSet zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    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.TreeSortedSet.zipWithIndex:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/list/MutableList;
            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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.toReversed:()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
            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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.powerSet:()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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

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

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

  public org.eclipse.collections.api.set.sorted.MutableSortedSet intersect(org.eclipse.collections.api.set.SetIterable);
    descriptor: (Lorg/eclipse/collections/api/set/SetIterable;)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 org.eclipse.collections.api.set.SetIterable
            invokevirtual org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.intersect:(Lorg/eclipse/collections/api/set/SetIterable;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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.TreeSortedSet.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/AbstractMutableCollection<TT;>;Ljava/io/Externalizable;Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TT;>;
SourceFile: "TreeSortedSet.java"
NestMembers:
  org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet$1
InnerClasses:
  org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet$1