public class org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl implements org.eclipse.collections.api.factory.set.ImmutableSetFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl
  super_class: java.lang.Object
{
  public static final org.eclipse.collections.api.factory.set.ImmutableSetFactory INSTANCE;
    descriptor: Lorg/eclipse/collections/api/factory/set/ImmutableSetFactory;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 21
            new org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl
            dup
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.<init>:()V
            putstatic org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.INSTANCE:Lorg/eclipse/collections/api/factory/set/ImmutableSetFactory;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
         0: .line 19
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> empty();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
         0: .line 26
            getstatic org.eclipse.collections.impl.set.immutable.ImmutableEmptySet.INSTANCE:Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
         0: .line 32
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.empty:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with();
    descriptor: ()Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
         0: .line 38
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.empty:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
    Signature: <T:Ljava/lang/Object;>()Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
         0: .line 44
            aload 0 /* this */
            aload 1 /* one */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1   one  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
      Name  Flags
      one   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with(T);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
         0: .line 50
            new org.eclipse.collections.impl.set.immutable.ImmutableSingletonSet
            dup
            aload 1 /* one */
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableSingletonSet.<init>:(Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1   one  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
      Name  Flags
      one   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
         0: .line 56
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1   one  TT;
            0    1     2   two  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
      Name  Flags
      one   
      two   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with(T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
         0: .line 62
            aload 1 /* one */
            aload 2 /* two */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 64
            aload 0 /* this */
            aload 1 /* one */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         2: .line 66
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.immutable.ImmutableDoubletonSet
            dup
            aload 1 /* one */
            aload 2 /* two */
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableDoubletonSet.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    3     1   one  TT;
            0    3     2   two  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
      Name  Flags
      one   
      two   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
         0: .line 72
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with(T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
         0: .line 78
            aload 1 /* one */
            aload 2 /* two */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 80
            aload 0 /* this */
            aload 1 /* one */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         2: .line 82
      StackMap locals:
      StackMap stack:
            aload 1 /* one */
            aload 3 /* three */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 84
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         4: .line 86
      StackMap locals:
      StackMap stack:
            aload 2 /* two */
            aload 3 /* three */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 88
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         6: .line 90
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.immutable.ImmutableTripletonSet
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableTripletonSet.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    7     1    one  TT;
            0    7     2    two  TT;
            0    7     3  three  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of(T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
         0: .line 96
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1    one  TT;
            0    1     2    two  TT;
            0    1     3  three  TT;
            0    1     4   four  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with(T, T, T, T);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object one
        start local 2 // java.lang.Object two
        start local 3 // java.lang.Object three
        start local 4 // java.lang.Object four
         0: .line 102
            aload 1 /* one */
            aload 2 /* two */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 2
         1: .line 104
            aload 0 /* this */
            aload 1 /* one */
            aload 3 /* three */
            aload 4 /* four */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         2: .line 106
      StackMap locals:
      StackMap stack:
            aload 1 /* one */
            aload 3 /* three */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 108
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 4 /* four */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         4: .line 110
      StackMap locals:
      StackMap stack:
            aload 1 /* one */
            aload 4 /* four */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 112
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         6: .line 114
      StackMap locals:
      StackMap stack:
            aload 2 /* two */
            aload 3 /* three */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 8
         7: .line 116
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 4 /* four */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         8: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* two */
            aload 4 /* four */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         9: .line 120
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        10: .line 122
      StackMap locals:
      StackMap stack:
            aload 3 /* three */
            aload 4 /* four */
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 12
        11: .line 124
            aload 0 /* this */
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        12: .line 126
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.immutable.ImmutableQuadrupletonSet
            dup
            aload 1 /* one */
            aload 2 /* two */
            aload 3 /* three */
            aload 4 /* four */
            invokespecial org.eclipse.collections.impl.set.immutable.ImmutableQuadrupletonSet.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 4 // java.lang.Object four
        end local 3 // java.lang.Object three
        end local 2 // java.lang.Object two
        end local 1 // java.lang.Object one
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0   13     1    one  TT;
            0   13     2    two  TT;
            0   13     3  three  TT;
            0   13     4   four  TT;
    Signature: <T:Ljava/lang/Object;>(TT;TT;TT;TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      one    
      two    
      three  
      four   

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> of(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object[] items
         0: .line 132
            aload 0 /* this */
            aload 1 /* items */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1  items  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> with(T[]);
    descriptor: ([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Object[] items
         0: .line 138
            aload 1 /* items */
            ifnull 1
            aload 1 /* items */
            arraylength
            ifne 2
         1: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         2: .line 143
      StackMap locals:
      StackMap stack:
            aload 1 /* items */
            arraylength
            tableswitch { // 1 - 4
                    1: 3
                    2: 4
                    3: 5
                    4: 6
              default: 7
          }
         3: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         4: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         5: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         6: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            iconst_0
            aaload
            aload 1 /* items */
            iconst_1
            aaload
            aload 1 /* items */
            iconst_2
            aaload
            aload 1 /* items */
            iconst_3
            aaload
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.of:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         7: .line 154
      StackMap locals:
      StackMap stack:
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.set.immutable.ImmutableUnifiedSet.newSetWith:([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 1 // java.lang.Object[] items
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    8     1  items  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> ofAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 161
            aload 0 /* this */
            aload 1 /* items */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.withAll:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    1     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      items  

  public <T> org.eclipse.collections.api.set.ImmutableSet<T> withAll(java.lang.Iterable<? extends T>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
        start local 1 // java.lang.Iterable items
         0: .line 167
            aload 1 /* items */
            instanceof org.eclipse.collections.api.set.ImmutableSet
            ifeq 2
         1: .line 169
            aload 1 /* items */
            checkcast org.eclipse.collections.api.set.ImmutableSet
            areturn
         2: .line 172
      StackMap locals:
      StackMap stack:
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
            ifeq 4
         3: .line 174
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
         4: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* items */
            invokestatic org.eclipse.collections.impl.utility.Iterate.toArray:(Ljava/lang/Iterable;)[Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl.with:([Ljava/lang/Object;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 1 // java.lang.Iterable items
        end local 0 // org.eclipse.collections.impl.set.immutable.ImmutableSetFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/collections/impl/set/immutable/ImmutableSetFactoryImpl;
            0    5     1  items  Ljava/lang/Iterable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<+TT;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TT;>;
    MethodParameters:
       Name  Flags
      items  
}
SourceFile: "ImmutableSetFactoryImpl.java"