final class com.google.common.collect.ImmutableSet$RegularSetBuilderImpl<E> extends com.google.common.collect.ImmutableSet$SetBuilderImpl<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.ImmutableSet$RegularSetBuilderImpl
  super_class: com.google.common.collect.ImmutableSet$SetBuilderImpl
{
  private java.lang.Object[] hashTable;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private int maxRunBeforeFallback;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int expandTableThreshold;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int hashCode;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
        start local 1 // int expectedCapacity
         0: .line 715
            aload 0 /* this */
            iload 1 /* expectedCapacity */
            invokespecial com.google.common.collect.ImmutableSet$SetBuilderImpl.<init>:(I)V
         1: .line 716
            iload 1 /* expectedCapacity */
            invokestatic com.google.common.collect.ImmutableSet.chooseTableSize:(I)I
            istore 2 /* tableSize */
        start local 2 // int tableSize
         2: .line 717
            aload 0 /* this */
            iload 2 /* tableSize */
            anewarray java.lang.Object
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
         3: .line 718
            aload 0 /* this */
            iload 2 /* tableSize */
            invokestatic com.google.common.collect.ImmutableSet.maxRunBeforeFallback:(I)I
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.maxRunBeforeFallback:I
         4: .line 719
            aload 0 /* this */
            ldc 0.7
            iload 2 /* tableSize */
            i2d
            dmul
            d2i
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.expandTableThreshold:I
         5: .line 720
            return
        end local 2 // int tableSize
        end local 1 // int expectedCapacity
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            0    6     1  expectedCapacity  I
            2    6     2         tableSize  I
    MethodParameters:
                  Name  Flags
      expectedCapacity  

  void <init>(com.google.common.collect.ImmutableSet$RegularSetBuilderImpl<E>);
    descriptor: (Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
        start local 1 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl toCopy
         0: .line 723
            aload 0 /* this */
            aload 1 /* toCopy */
            invokespecial com.google.common.collect.ImmutableSet$SetBuilderImpl.<init>:(Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;)V
         1: .line 724
            aload 0 /* this */
            aload 1 /* toCopy */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            aload 1 /* toCopy */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
         2: .line 725
            aload 0 /* this */
            aload 1 /* toCopy */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.maxRunBeforeFallback:I
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.maxRunBeforeFallback:I
         3: .line 726
            aload 0 /* this */
            aload 1 /* toCopy */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.expandTableThreshold:I
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.expandTableThreshold:I
         4: .line 727
            aload 0 /* this */
            aload 1 /* toCopy */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashCode:I
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashCode:I
         5: .line 728
            return
        end local 1 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl toCopy
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            0    6     1  toCopy  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
    Signature: (Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;)V
    MethodParameters:
        Name  Flags
      toCopy  

  void ensureTableCapacity(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
        start local 1 // int minCapacity
         0: .line 731
            iload 1 /* minCapacity */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.expandTableThreshold:I
            if_icmple 5
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            ldc 1073741824
            if_icmpge 5
         1: .line 732
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            iconst_2
            imul
            istore 2 /* newTableSize */
        start local 2 // int newTableSize
         2: .line 733
            aload 0 /* this */
            iload 2 /* newTableSize */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            invokestatic com.google.common.collect.ImmutableSet.rebuildHashTable:(I[Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
         3: .line 734
            aload 0 /* this */
            iload 2 /* newTableSize */
            invokestatic com.google.common.collect.ImmutableSet.maxRunBeforeFallback:(I)I
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.maxRunBeforeFallback:I
         4: .line 735
            aload 0 /* this */
            ldc 0.7
            iload 2 /* newTableSize */
            i2d
            dmul
            d2i
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.expandTableThreshold:I
        end local 2 // int newTableSize
         5: .line 737
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int minCapacity
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            0    6     1   minCapacity  I
            2    5     2  newTableSize  I
    MethodParameters:
             Name  Flags
      minCapacity  

  com.google.common.collect.ImmutableSet$SetBuilderImpl<E> add(E);
    descriptor: (Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
        start local 1 // java.lang.Object e
         0: .line 741
            aload 1 /* e */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 742
            aload 1 /* e */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* eHash */
        start local 2 // int eHash
         2: .line 743
            iload 2 /* eHash */
            invokestatic com.google.common.collect.Hashing.smear:(I)I
            istore 3 /* i0 */
        start local 3 // int i0
         3: .line 744
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            iconst_1
            isub
            istore 4 /* mask */
        start local 4 // int mask
         4: .line 745
            iload 3 /* i0 */
            istore 5 /* i */
        start local 5 // int i
         5: goto 17
         6: .line 746
      StackMap locals: com.google.common.collect.ImmutableSet$RegularSetBuilderImpl java.lang.Object int int int int
      StackMap stack:
            iload 5 /* i */
            iload 4 /* mask */
            iand
            istore 6 /* index */
        start local 6 // int index
         7: .line 747
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            iload 6 /* index */
            aaload
            astore 7 /* tableEntry */
        start local 7 // java.lang.Object tableEntry
         8: .line 748
            aload 7 /* tableEntry */
            ifnonnull 14
         9: .line 749
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.addDedupedElement:(Ljava/lang/Object;)V
        10: .line 750
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            iload 6 /* index */
            aload 1 /* e */
            aastore
        11: .line 751
            aload 0 /* this */
            dup
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashCode:I
            iload 2 /* eHash */
            iadd
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashCode:I
        12: .line 752
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            invokevirtual com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.ensureTableCapacity:(I)V
        13: .line 753
            aload 0 /* this */
            areturn
        14: .line 754
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 7 /* tableEntry */
            aload 1 /* e */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 16
        15: .line 755
            aload 0 /* this */
            areturn
        end local 7 // java.lang.Object tableEntry
        end local 6 // int index
        16: .line 745
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            iload 3 /* i0 */
            isub
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.maxRunBeforeFallback:I
            if_icmplt 6
        end local 5 // int i
        18: .line 759
            new com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl.<init>:(Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;)V
            aload 1 /* e */
            invokevirtual com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl.add:(Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;
            areturn
        end local 4 // int mask
        end local 3 // int i0
        end local 2 // int eHash
        end local 1 // java.lang.Object e
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            0   19     1           e  TE;
            2   19     2       eHash  I
            3   19     3          i0  I
            4   19     4        mask  I
            5   18     5           i  I
            7   16     6       index  I
            8   16     7  tableEntry  Ljava/lang/Object;
    Signature: (TE;)Lcom/google/common/collect/ImmutableSet$SetBuilderImpl<TE;>;
    MethodParameters:
      Name  Flags
      e     

  com.google.common.collect.ImmutableSet$SetBuilderImpl<E> copy();
    descriptor: ()Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
         0: .line 764
            new com.google.common.collect.ImmutableSet$RegularSetBuilderImpl
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.<init>:(Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
    Signature: ()Lcom/google/common/collect/ImmutableSet$SetBuilderImpl<TE;>;

  com.google.common.collect.ImmutableSet$SetBuilderImpl<E> review();
    descriptor: ()Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
         0: .line 769
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            invokestatic com.google.common.collect.ImmutableSet.chooseTableSize:(I)I
            istore 1 /* targetTableSize */
        start local 1 // int targetTableSize
         1: .line 770
            iload 1 /* targetTableSize */
            iconst_2
            imul
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            if_icmpge 3
         2: .line 771
            aload 0 /* this */
            iload 1 /* targetTableSize */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            invokestatic com.google.common.collect.ImmutableSet.rebuildHashTable:(I[Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
         3: .line 773
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            invokestatic com.google.common.collect.ImmutableSet.hashFloodingDetected:([Ljava/lang/Object;)Z
            ifeq 4
            new com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl.<init>:(Lcom/google/common/collect/ImmutableSet$SetBuilderImpl;)V
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
      StackMap locals:
      StackMap stack: com.google.common.collect.ImmutableSet$SetBuilderImpl
         5: areturn
        end local 1 // int targetTableSize
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            1    6     1  targetTableSize  I
    Signature: ()Lcom/google/common/collect/ImmutableSet$SetBuilderImpl<TE;>;

  com.google.common.collect.ImmutableSet<E> build();
    descriptor: ()Lcom/google/common/collect/ImmutableSet;
    flags: (0x0000) 
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
         0: .line 778
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            tableswitch { // 0 - 1
                    0: 1
                    1: 2
              default: 3
          }
         1: .line 780
      StackMap locals:
      StackMap stack:
            invokestatic com.google.common.collect.ImmutableSet.of:()Lcom/google/common/collect/ImmutableSet;
            areturn
         2: .line 782
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            iconst_0
            aaload
            invokestatic com.google.common.collect.ImmutableSet.of:(Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet;
            areturn
         3: .line 785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            arraylength
            if_icmpne 5
         4: .line 786
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            goto 6
         5: .line 787
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.dedupedElements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.distinct:I
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
         6: .line 784
      StackMap locals:
      StackMap stack: java.lang.Object[]
            astore 1 /* elements */
        start local 1 // java.lang.Object[] elements
         7: .line 788
            new com.google.common.collect.RegularImmutableSet
            dup
            aload 1 /* elements */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashCode:I
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableSet$RegularSetBuilderImpl.hashTable:[Ljava/lang/Object;
            arraylength
            iconst_1
            isub
            invokespecial com.google.common.collect.RegularImmutableSet.<init>:([Ljava/lang/Object;I[Ljava/lang/Object;I)V
            areturn
        end local 1 // java.lang.Object[] elements
        end local 0 // com.google.common.collect.ImmutableSet$RegularSetBuilderImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/google/common/collect/ImmutableSet$RegularSetBuilderImpl<TE;>;
            7    8     1  elements  [Ljava/lang/Object;
    Signature: ()Lcom/google/common/collect/ImmutableSet<TE;>;
}
Signature: <E:Ljava/lang/Object;>Lcom/google/common/collect/ImmutableSet$SetBuilderImpl<TE;>;
SourceFile: "ImmutableSet.java"
NestHost: com.google.common.collect.ImmutableSet
InnerClasses:
  private final JdkBackedSetBuilderImpl = com.google.common.collect.ImmutableSet$JdkBackedSetBuilderImpl of com.google.common.collect.ImmutableSet
  private final RegularSetBuilderImpl = com.google.common.collect.ImmutableSet$RegularSetBuilderImpl of com.google.common.collect.ImmutableSet
  private abstract SetBuilderImpl = com.google.common.collect.ImmutableSet$SetBuilderImpl of com.google.common.collect.ImmutableSet