final class org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet<T> extends org.eclipse.collections.impl.set.immutable.AbstractImmutableSet<T> implements java.io.Serializable, org.eclipse.collections.impl.parallel.BatchIterable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet
  super_class: org.eclipse.collections.impl.set.immutable.AbstractImmutableSet
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final org.eclipse.collections.impl.set.mutable.UnifiedSet<T> delegate;
    descriptor: Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/impl/set/mutable/UnifiedSet<TT;>;

  private void <init>(org.eclipse.collections.impl.set.mutable.UnifiedSet<T>);
    descriptor: (Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // org.eclipse.collections.impl.set.mutable.UnifiedSet delegate
         0: .line 32
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.AbstractImmutableSet.<init>:()V
         1: .line 34
            aload 0 /* this */
            aload 1 /* delegate */
            putfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
         2: .line 35
            return
        end local 1 // org.eclipse.collections.impl.set.mutable.UnifiedSet delegate
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    3     1  delegate  Lorg/eclipse/collections/impl/set/mutable/UnifiedSet<TT;>;
    Signature: (Lorg/eclipse/collections/impl/set/mutable/UnifiedSet<TT;>;)V
    MethodParameters:
          Name  Flags
      delegate  

  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.immutable.ImmutableUnifiedSet this
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // java.lang.Object other
         0: .line 46
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* other */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    1     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      other  

  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.immutable.ImmutableUnifiedSet this
         0: .line 52
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.hashCode:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // java.lang.Object object
         0: .line 58
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* object */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
         0: .line 64
            new org.eclipse.collections.impl.UnmodifiableIteratorAdapter
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.iterator:()Ljava/util/Iterator;
            invokespecial org.eclipse.collections.impl.UnmodifiableIteratorAdapter.<init>:(Ljava/util/Iterator;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;

  public T getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
         0: .line 70
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.getFirst:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<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.immutable.ImmutableUnifiedSet this
         0: .line 76
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.getLast:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
    Signature: ()TT;

  public T getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
         0: .line 82
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.getOnly:()Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
    Signature: ()TT;

  public static <T> org.eclipse.collections.api.set.ImmutableSet<T> newSetWith(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 87
            new org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet
            dup
            aload 0 /* elements */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSetWith:([Ljava/lang/Object;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.<init>:(Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;)V
            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/api/set/ImmutableSet<TT;>;
    MethodParameters:
          Name  Flags
      elements  

  public static <T> org.eclipse.collections.api.set.ImmutableSet<T> newSet(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Iterable iterable
         0: .line 92
            new org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet
            dup
            aload 0 /* iterable */
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(Ljava/lang/Iterable;)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.<init>:(Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;)V
            areturn
        end local 0 // java.lang.Iterable iterable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  iterable  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
          Name  Flags
      iterable  

  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.immutable.ImmutableUnifiedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 98
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 99
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<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 int getBatchCount(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // int batchSize
         0: .line 104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            iload 1 /* batchSize */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.getBatchCount:(I)I
            ireturn
        end local 1 // int batchSize
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    1     1  batchSize  I
    MethodParameters:
           Name  Flags
      batchSize  

  public void batchForEach(org.eclipse.collections.api.block.procedure.Procedure<? super T>, int, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        start local 2 // int sectionIndex
        start local 3 // int sectionCount
         0: .line 110
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* procedure */
            iload 2 /* sectionIndex */
            iload 3 /* sectionCount */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.batchForEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;II)V
         1: .line 111
            return
        end local 3 // int sectionCount
        end local 2 // int sectionIndex
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    2     1     procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;
            0    2     2  sectionIndex  I
            0    2     3  sectionCount  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TT;>;II)V
    MethodParameters:
              Name  Flags
      procedure     
      sectionIndex  
      sectionCount  

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
         0: .line 115
            new org.eclipse.collections.impl.set.immutable.ImmutableSetSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableSetSerializationProxy.<init>:(Lorg/eclipse/collections/api/set/ImmutableSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;

  public org.eclipse.collections.api.set.ParallelUnsortedSetIterable<T> asParallel(java.util.concurrent.ExecutorService, int);
    descriptor: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/ParallelUnsortedSetIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
        start local 1 // java.util.concurrent.ExecutorService executorService
        start local 2 // int batchSize
         0: .line 121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.delegate:Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            aload 1 /* executorService */
            iload 2 /* batchSize */
            invokevirtual org.eclipse.collections.impl.set.mutable.UnifiedSet.asParallel:(Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/ParallelUnsortedSetIterable;
            areturn
        end local 2 // int batchSize
        end local 1 // java.util.concurrent.ExecutorService executorService
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/set/immutable/ImmutableUnifiedSet<TT;>;
            0    1     1  executorService  Ljava/util/concurrent/ExecutorService;
            0    1     2        batchSize  I
    Signature: (Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/ParallelUnsortedSetIterable<TT;>;
    MethodParameters:
                 Name  Flags
      executorService  
      batchSize        

  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.immutable.ImmutableUnifiedSet.asParallel:(Ljava/util/concurrent/ExecutorService;I)Lorg/eclipse/collections/api/set/ParallelUnsortedSetIterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/set/immutable/AbstractImmutableSet<TT;>;Ljava/io/Serializable;Lorg/eclipse/collections/impl/parallel/BatchIterable<TT;>;
SourceFile: "ImmutableUnifiedSet.java"