class com.google.common.collect.CompactHashSet<E> extends java.util.AbstractSet<E> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.CompactHashSet
  super_class: java.util.AbstractSet
{
  private static final int MAXIMUM_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1073741824

  private static final float DEFAULT_LOAD_FACTOR;
    descriptor: F
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0

  private static final long NEXT_MASK;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4294967295

  private static final long HASH_MASK;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4294967296

  private static final int DEFAULT_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  static final int UNSET;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private transient int[] table;
    descriptor: [I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  private transient long[] entries;
    descriptor: [J
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  transient java.lang.Object[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0080) ACC_TRANSIENT
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.MonotonicNonNull()

  transient float loadFactor;
    descriptor: F
    flags: (0x0080) ACC_TRANSIENT

  transient int modCount;
    descriptor: I
    flags: (0x0080) ACC_TRANSIENT

  private transient int threshold;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int size;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public static <E> com.google.common.collect.CompactHashSet<E> create();
    descriptor: ()Lcom/google/common/collect/CompactHashSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 76
            new com.google.common.collect.CompactHashSet
            dup
            invokespecial com.google.common.collect.CompactHashSet.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Lcom/google/common/collect/CompactHashSet<TE;>;

  public static <E> com.google.common.collect.CompactHashSet<E> create(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Lcom/google/common/collect/CompactHashSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.Collection collection
         0: .line 87
            aload 0 /* collection */
            invokeinterface java.util.Collection.size:()I
            invokestatic com.google.common.collect.CompactHashSet.createWithExpectedSize:(I)Lcom/google/common/collect/CompactHashSet;
            astore 1 /* set */
        start local 1 // com.google.common.collect.CompactHashSet set
         1: .line 88
            aload 1 /* set */
            aload 0 /* collection */
            invokevirtual com.google.common.collect.CompactHashSet.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 89
            aload 1 /* set */
            areturn
        end local 1 // com.google.common.collect.CompactHashSet set
        end local 0 // java.util.Collection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0  collection  Ljava/util/Collection<+TE;>;
            1    3     1         set  Lcom/google/common/collect/CompactHashSet<TE;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/util/Collection<+TE;>;)Lcom/google/common/collect/CompactHashSet<TE;>;
    MethodParameters:
            Name  Flags
      collection  

  public static <E> com.google.common.collect.CompactHashSet<E> create(E[]);
    descriptor: ([Ljava/lang/Object;)Lcom/google/common/collect/CompactHashSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.Object[] elements
         0: .line 100
            aload 0 /* elements */
            arraylength
            invokestatic com.google.common.collect.CompactHashSet.createWithExpectedSize:(I)Lcom/google/common/collect/CompactHashSet;
            astore 1 /* set */
        start local 1 // com.google.common.collect.CompactHashSet set
         1: .line 101
            aload 1 /* set */
            aload 0 /* elements */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
         2: .line 102
            aload 1 /* set */
            areturn
        end local 1 // com.google.common.collect.CompactHashSet set
        end local 0 // java.lang.Object[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  elements  [Ljava/lang/Object;
            1    3     1       set  Lcom/google/common/collect/CompactHashSet<TE;>;
    Signature: <E:Ljava/lang/Object;>([TE;)Lcom/google/common/collect/CompactHashSet<TE;>;
    MethodParameters:
          Name  Flags
      elements  

  public static <E> com.google.common.collect.CompactHashSet<E> createWithExpectedSize(int);
    descriptor: (I)Lcom/google/common/collect/CompactHashSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int expectedSize
         0: .line 115
            new com.google.common.collect.CompactHashSet
            dup
            iload 0 /* expectedSize */
            invokespecial com.google.common.collect.CompactHashSet.<init>:(I)V
            areturn
        end local 0 // int expectedSize
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  expectedSize  I
    Signature: <E:Ljava/lang/Object;>(I)Lcom/google/common/collect/CompactHashSet<TE;>;
    MethodParameters:
              Name  Flags
      expectedSize  

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 172
            aload 0 /* this */
            invokespecial java.util.AbstractSet.<init>:()V
         1: .line 173
            aload 0 /* this */
            iconst_3
            fconst_1
            invokevirtual com.google.common.collect.CompactHashSet.init:(IF)V
         2: .line 174
            return
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int expectedSize
         0: .line 181
            aload 0 /* this */
            invokespecial java.util.AbstractSet.<init>:()V
         1: .line 182
            aload 0 /* this */
            iload 1 /* expectedSize */
            fconst_1
            invokevirtual com.google.common.collect.CompactHashSet.init:(IF)V
         2: .line 183
            return
        end local 1 // int expectedSize
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    3     1  expectedSize  I
    MethodParameters:
              Name  Flags
      expectedSize  

  void init(int, float);
    descriptor: (IF)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int expectedSize
        start local 2 // float loadFactor
         0: .line 187
            iload 1 /* expectedSize */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Initial capacity must be non-negative"
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/Object;)V
         3: .line 188
            fload 2 /* loadFactor */
            fconst_0
            fcmpl
            ifle 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: ldc "Illegal load factor"
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/Object;)V
         6: .line 189
            iload 1 /* expectedSize */
            fload 2 /* loadFactor */
            f2d
            invokestatic com.google.common.collect.Hashing.closedTableSize:(ID)I
            istore 3 /* buckets */
        start local 3 // int buckets
         7: .line 190
            aload 0 /* this */
            iload 3 /* buckets */
            invokestatic com.google.common.collect.CompactHashSet.newTable:(I)[I
            putfield com.google.common.collect.CompactHashSet.table:[I
         8: .line 191
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield com.google.common.collect.CompactHashSet.loadFactor:F
         9: .line 192
            aload 0 /* this */
            iload 1 /* expectedSize */
            anewarray java.lang.Object
            putfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
        10: .line 193
            aload 0 /* this */
            iload 1 /* expectedSize */
            invokestatic com.google.common.collect.CompactHashSet.newEntries:(I)[J
            putfield com.google.common.collect.CompactHashSet.entries:[J
        11: .line 194
            aload 0 /* this */
            iconst_1
            iload 3 /* buckets */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            invokestatic java.lang.Math.max:(II)I
            putfield com.google.common.collect.CompactHashSet.threshold:I
        12: .line 195
            return
        end local 3 // int buckets
        end local 2 // float loadFactor
        end local 1 // int expectedSize
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0   13     1  expectedSize  I
            0   13     2    loadFactor  F
            7   13     3       buckets  I
    MethodParameters:
              Name  Flags
      expectedSize  
      loadFactor    

  private static int[] newTable(int);
    descriptor: (I)[I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // int size
         0: .line 198
            iload 0 /* size */
            newarray 10
            astore 1 /* array */
        start local 1 // int[] array
         1: .line 199
            aload 1 /* array */
            iconst_m1
            invokestatic java.util.Arrays.fill:([II)V
         2: .line 200
            aload 1 /* array */
            areturn
        end local 1 // int[] array
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   size  I
            1    3     1  array  [I
    MethodParameters:
      Name  Flags
      size  

  private static long[] newEntries(int);
    descriptor: (I)[J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // int size
         0: .line 204
            iload 0 /* size */
            newarray 11
            astore 1 /* array */
        start local 1 // long[] array
         1: .line 205
            aload 1 /* array */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         2: .line 206
            aload 1 /* array */
            areturn
        end local 1 // long[] array
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   size  I
            1    3     1  array  [J
    MethodParameters:
      Name  Flags
      size  

  private static int getHash(long);
    descriptor: (J)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // long entry
         0: .line 210
            lload 0 /* entry */
            bipush 32
            lushr
            l2i
            ireturn
        end local 0 // long entry
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  entry  J
    MethodParameters:
       Name  Flags
      entry  

  private static int getNext(long);
    descriptor: (J)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // long entry
         0: .line 215
            lload 0 /* entry */
            l2i
            ireturn
        end local 0 // long entry
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  entry  J
    MethodParameters:
       Name  Flags
      entry  

  private static long swapNext(long, int);
    descriptor: (JI)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // long entry
        start local 2 // int newNext
         0: .line 220
            ldc -4294967296
            lload 0 /* entry */
            land
            ldc 4294967295
            iload 2 /* newNext */
            i2l
            land
            lor
            lreturn
        end local 2 // int newNext
        end local 0 // long entry
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0    entry  J
            0    1     2  newNext  I
    MethodParameters:
         Name  Flags
      entry    
      newNext  

  private int hashTableMask();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 224
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            arraylength
            iconst_1
            isub
            ireturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.lang.Object object
         0: .line 230
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            astore 2 /* entries */
        start local 2 // long[] entries
         1: .line 231
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            astore 3 /* elements */
        start local 3 // java.lang.Object[] elements
         2: .line 232
            aload 1 /* object */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            istore 4 /* hash */
        start local 4 // int hash
         3: .line 233
            iload 4 /* hash */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.hashTableMask:()I
            iand
            istore 5 /* tableIndex */
        start local 5 // int tableIndex
         4: .line 234
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            istore 6 /* newEntryIndex */
        start local 6 // int newEntryIndex
         5: .line 235
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 5 /* tableIndex */
            iaload
            istore 7 /* next */
        start local 7 // int next
         6: .line 236
            iload 7 /* next */
            iconst_m1
            if_icmpne 9
         7: .line 237
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 5 /* tableIndex */
            iload 6 /* newEntryIndex */
            iastore
         8: .line 238
            goto 16
         9: .line 242
      StackMap locals: com.google.common.collect.CompactHashSet java.lang.Object long[] java.lang.Object[] int int int int
      StackMap stack:
            iload 7 /* next */
            istore 8 /* last */
        start local 8 // int last
        10: .line 243
            aload 2 /* entries */
            iload 7 /* next */
            laload
            lstore 9 /* entry */
        start local 9 // long entry
        11: .line 244
            lload 9 /* entry */
            invokestatic com.google.common.collect.CompactHashSet.getHash:(J)I
            iload 4 /* hash */
            if_icmpne 13
            aload 1 /* object */
            aload 3 /* elements */
            iload 7 /* next */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 13
        12: .line 245
            iconst_0
            ireturn
        13: .line 247
      StackMap locals: int long
      StackMap stack:
            lload 9 /* entry */
            invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            istore 7 /* next */
        14: .line 248
            iload 7 /* next */
            iconst_m1
            if_icmpne 9
        15: .line 249
            aload 2 /* entries */
            iload 8 /* last */
            lload 9 /* entry */
            iload 6 /* newEntryIndex */
            invokestatic com.google.common.collect.CompactHashSet.swapNext:(JI)J
            lastore
        end local 9 // long entry
        end local 8 // int last
        16: .line 251
      StackMap locals:
      StackMap stack:
            iload 6 /* newEntryIndex */
            ldc 2147483647
            if_icmpne 18
        17: .line 252
            new java.lang.IllegalStateException
            dup
            ldc "Cannot contain more than Integer.MAX_VALUE elements!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 254
      StackMap locals:
      StackMap stack:
            iload 6 /* newEntryIndex */
            iconst_1
            iadd
            istore 8 /* newSize */
        start local 8 // int newSize
        19: .line 255
            aload 0 /* this */
            iload 8 /* newSize */
            invokevirtual com.google.common.collect.CompactHashSet.resizeMeMaybe:(I)V
        20: .line 256
            aload 0 /* this */
            iload 6 /* newEntryIndex */
            aload 1 /* object */
            iload 4 /* hash */
            invokevirtual com.google.common.collect.CompactHashSet.insertEntry:(ILjava/lang/Object;I)V
        21: .line 257
            aload 0 /* this */
            iload 8 /* newSize */
            putfield com.google.common.collect.CompactHashSet.size:I
        22: .line 258
            iload 6 /* newEntryIndex */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.threshold:I
            if_icmplt 24
        23: .line 259
            aload 0 /* this */
            iconst_2
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            arraylength
            imul
            invokevirtual com.google.common.collect.CompactHashSet.resizeTable:(I)V
        24: .line 261
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashSet.modCount:I
            iconst_1
            iadd
            putfield com.google.common.collect.CompactHashSet.modCount:I
        25: .line 262
            iconst_1
            ireturn
        end local 8 // int newSize
        end local 7 // int next
        end local 6 // int newEntryIndex
        end local 5 // int tableIndex
        end local 4 // int hash
        end local 3 // java.lang.Object[] elements
        end local 2 // long[] entries
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   26     0           this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0   26     1         object  TE;
            1   26     2        entries  [J
            2   26     3       elements  [Ljava/lang/Object;
            3   26     4           hash  I
            4   26     5     tableIndex  I
            5   26     6  newEntryIndex  I
            6   26     7           next  I
           10   16     8           last  I
           11   16     9          entry  J
           19   26     8        newSize  I
    Signature: (TE;)Z
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      object  

  void insertEntry(int, E, );
    descriptor: (ILjava/lang/Object;I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int entryIndex
        start local 2 // java.lang.Object object
        start local 3 // int hash
         0: .line 269
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 1 /* entryIndex */
            iload 3 /* hash */
            i2l
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
         1: .line 270
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 1 /* entryIndex */
            aload 2 /* object */
            aastore
         2: .line 271
            return
        end local 3 // int hash
        end local 2 // java.lang.Object object
        end local 1 // int entryIndex
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    3     1  entryIndex  I
            0    3     2      object  TE;
            0    3     3        hash  I
    Signature: (ITE;I)V
    MethodParameters:
            Name  Flags
      entryIndex  
      object      
      hash        

  private void resizeMeMaybe(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int newSize
         0: .line 275
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            arraylength
            istore 2 /* entriesSize */
        start local 2 // int entriesSize
         1: .line 276
            iload 1 /* newSize */
            iload 2 /* entriesSize */
            if_icmple 7
         2: .line 277
            iload 2 /* entriesSize */
            iconst_1
            iload 2 /* entriesSize */
            iconst_1
            iushr
            invokestatic java.lang.Math.max:(II)I
            iadd
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 278
            iload 3 /* newCapacity */
            ifge 5
         4: .line 279
            ldc 2147483647
            istore 3 /* newCapacity */
         5: .line 281
      StackMap locals: int int
      StackMap stack:
            iload 3 /* newCapacity */
            iload 2 /* entriesSize */
            if_icmpeq 7
         6: .line 282
            aload 0 /* this */
            iload 3 /* newCapacity */
            invokevirtual com.google.common.collect.CompactHashSet.resizeEntries:(I)V
        end local 3 // int newCapacity
         7: .line 285
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int entriesSize
        end local 1 // int newSize
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    8     1      newSize  I
            1    8     2  entriesSize  I
            3    7     3  newCapacity  I
    MethodParameters:
         Name  Flags
      newSize  

  void resizeEntries(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int newCapacity
         0: .line 292
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 1 /* newCapacity */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
         1: .line 293
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            astore 2 /* entries */
        start local 2 // long[] entries
         2: .line 294
            aload 2 /* entries */
            arraylength
            istore 3 /* oldSize */
        start local 3 // int oldSize
         3: .line 295
            aload 2 /* entries */
            iload 1 /* newCapacity */
            invokestatic java.util.Arrays.copyOf:([JI)[J
            astore 2 /* entries */
         4: .line 296
            iload 1 /* newCapacity */
            iload 3 /* oldSize */
            if_icmple 6
         5: .line 297
            aload 2 /* entries */
            iload 3 /* oldSize */
            iload 1 /* newCapacity */
            ldc -1
            invokestatic java.util.Arrays.fill:([JIIJ)V
         6: .line 299
      StackMap locals: long[] int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entries */
            putfield com.google.common.collect.CompactHashSet.entries:[J
         7: .line 300
            return
        end local 3 // int oldSize
        end local 2 // long[] entries
        end local 1 // int newCapacity
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    8     1  newCapacity  I
            2    8     2      entries  [J
            3    8     3      oldSize  I
    MethodParameters:
             Name  Flags
      newCapacity  

  private void resizeTable(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=14, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int newCapacity
         0: .line 303
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            astore 2 /* oldTable */
        start local 2 // int[] oldTable
         1: .line 304
            aload 2 /* oldTable */
            arraylength
            istore 3 /* oldCapacity */
        start local 3 // int oldCapacity
         2: .line 305
            iload 3 /* oldCapacity */
            ldc 1073741824
            if_icmplt 5
         3: .line 306
            aload 0 /* this */
            ldc 2147483647
            putfield com.google.common.collect.CompactHashSet.threshold:I
         4: .line 307
            return
         5: .line 309
      StackMap locals: int[] int
      StackMap stack:
            iconst_1
            iload 1 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.loadFactor:F
            fmul
            f2i
            iadd
            istore 4 /* newThreshold */
        start local 4 // int newThreshold
         6: .line 310
            iload 1 /* newCapacity */
            invokestatic com.google.common.collect.CompactHashSet.newTable:(I)[I
            astore 5 /* newTable */
        start local 5 // int[] newTable
         7: .line 311
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            astore 6 /* entries */
        start local 6 // long[] entries
         8: .line 313
            aload 5 /* newTable */
            arraylength
            iconst_1
            isub
            istore 7 /* mask */
        start local 7 // int mask
         9: .line 314
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        10: goto 18
        11: .line 315
      StackMap locals: com.google.common.collect.CompactHashSet int int[] int int int[] long[] int int
      StackMap stack:
            aload 6 /* entries */
            iload 8 /* i */
            laload
            lstore 9 /* oldEntry */
        start local 9 // long oldEntry
        12: .line 316
            lload 9 /* oldEntry */
            invokestatic com.google.common.collect.CompactHashSet.getHash:(J)I
            istore 11 /* hash */
        start local 11 // int hash
        13: .line 317
            iload 11 /* hash */
            iload 7 /* mask */
            iand
            istore 12 /* tableIndex */
        start local 12 // int tableIndex
        14: .line 318
            aload 5 /* newTable */
            iload 12 /* tableIndex */
            iaload
            istore 13 /* next */
        start local 13 // int next
        15: .line 319
            aload 5 /* newTable */
            iload 12 /* tableIndex */
            iload 8 /* i */
            iastore
        16: .line 320
            aload 6 /* entries */
            iload 8 /* i */
            iload 11 /* hash */
            i2l
            bipush 32
            lshl
            ldc 4294967295
            iload 13 /* next */
            i2l
            land
            lor
            lastore
        end local 13 // int next
        end local 12 // int tableIndex
        end local 11 // int hash
        end local 9 // long oldEntry
        17: .line 314
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 8 /* i */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            if_icmplt 11
        end local 8 // int i
        19: .line 323
            aload 0 /* this */
            iload 4 /* newThreshold */
            putfield com.google.common.collect.CompactHashSet.threshold:I
        20: .line 324
            aload 0 /* this */
            aload 5 /* newTable */
            putfield com.google.common.collect.CompactHashSet.table:[I
        21: .line 325
            return
        end local 7 // int mask
        end local 6 // long[] entries
        end local 5 // int[] newTable
        end local 4 // int newThreshold
        end local 3 // int oldCapacity
        end local 2 // int[] oldTable
        end local 1 // int newCapacity
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0   22     1   newCapacity  I
            1   22     2      oldTable  [I
            2   22     3   oldCapacity  I
            6   22     4  newThreshold  I
            7   22     5      newTable  [I
            8   22     6       entries  [J
            9   22     7          mask  I
           10   19     8             i  I
           12   17     9      oldEntry  J
           13   17    11          hash  I
           14   17    12    tableIndex  I
           15   17    13          next  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.lang.Object object
         0: .line 329
            aload 1 /* object */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 330
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 2 /* hash */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.hashTableMask:()I
            iand
            iaload
            istore 3 /* next */
        start local 3 // int next
         2: .line 331
            goto 7
         3: .line 332
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 3 /* next */
            laload
            lstore 4 /* entry */
        start local 4 // long entry
         4: .line 333
            lload 4 /* entry */
            invokestatic com.google.common.collect.CompactHashSet.getHash:(J)I
            iload 2 /* hash */
            if_icmpne 6
            aload 1 /* object */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 3 /* next */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 334
            iconst_1
            ireturn
         6: .line 336
      StackMap locals: long
      StackMap stack:
            lload 4 /* entry */
            invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            istore 3 /* next */
        end local 4 // long entry
         7: .line 331
      StackMap locals:
      StackMap stack:
            iload 3 /* next */
            iconst_m1
            if_icmpne 3
         8: .line 338
            iconst_0
            ireturn
        end local 3 // int next
        end local 2 // int hash
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    9     1  object  Ljava/lang/Object;
            1    9     2    hash  I
            2    9     3    next  I
            4    7     4   entry  J
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      object  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.lang.Object object
         0: .line 344
            aload 0 /* this */
            aload 1 /* object */
            aload 1 /* object */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            invokevirtual com.google.common.collect.CompactHashSet.remove:(Ljava/lang/Object;I)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    1     1  object  Ljava/lang/Object;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      object  

  private boolean remove(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.lang.Object object
        start local 2 // int hash
         0: .line 349
            iload 2 /* hash */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.hashTableMask:()I
            iand
            istore 3 /* tableIndex */
        start local 3 // int tableIndex
         1: .line 350
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 3 /* tableIndex */
            iaload
            istore 4 /* next */
        start local 4 // int next
         2: .line 351
            iload 4 /* next */
            iconst_m1
            if_icmpne 4
         3: .line 352
            iconst_0
            ireturn
         4: .line 354
      StackMap locals: int int
      StackMap stack:
            iconst_m1
            istore 5 /* last */
        start local 5 // int last
         5: .line 356
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 4 /* next */
            laload
            invokestatic com.google.common.collect.CompactHashSet.getHash:(J)I
            iload 2 /* hash */
            if_icmpne 14
            aload 1 /* object */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 4 /* next */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 14
         6: .line 357
            iload 5 /* last */
            iconst_m1
            if_icmpne 9
         7: .line 359
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 3 /* tableIndex */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 4 /* next */
            laload
            invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            iastore
         8: .line 360
            goto 10
         9: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 5 /* last */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 5 /* last */
            laload
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 4 /* next */
            laload
            invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            invokestatic com.google.common.collect.CompactHashSet.swapNext:(JI)J
            lastore
        10: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* next */
            invokevirtual com.google.common.collect.CompactHashSet.moveEntry:(I)V
        11: .line 366
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashSet.size:I
            iconst_1
            isub
            putfield com.google.common.collect.CompactHashSet.size:I
        12: .line 367
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashSet.modCount:I
            iconst_1
            iadd
            putfield com.google.common.collect.CompactHashSet.modCount:I
        13: .line 368
            iconst_1
            ireturn
        14: .line 370
      StackMap locals:
      StackMap stack:
            iload 4 /* next */
            istore 5 /* last */
        15: .line 371
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 4 /* next */
            laload
            invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            istore 4 /* next */
        16: .line 372
            iload 4 /* next */
            iconst_m1
            if_icmpne 5
        17: .line 373
            iconst_0
            ireturn
        end local 5 // int last
        end local 4 // int next
        end local 3 // int tableIndex
        end local 2 // int hash
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0   18     1      object  Ljava/lang/Object;
            0   18     2        hash  I
            1   18     3  tableIndex  I
            2   18     4        next  I
            5   18     5        last  I
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
        Name  Flags
      object  
      hash    

  void moveEntry(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int dstIndex
         0: .line 380
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.size:()I
            iconst_1
            isub
            istore 2 /* srcIndex */
        start local 2 // int srcIndex
         1: .line 381
            iload 1 /* dstIndex */
            iload 2 /* srcIndex */
            if_icmpge 18
         2: .line 383
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 2 /* srcIndex */
            aaload
            aastore
         3: .line 384
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 2 /* srcIndex */
            aconst_null
            aastore
         4: .line 387
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 2 /* srcIndex */
            laload
            lstore 3 /* lastEntry */
        start local 3 // long lastEntry
         5: .line 388
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 1 /* dstIndex */
            lload 3 /* lastEntry */
            lastore
         6: .line 389
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 2 /* srcIndex */
            ldc -1
            lastore
         7: .line 393
            lload 3 /* lastEntry */
            invokestatic com.google.common.collect.CompactHashSet.getHash:(J)I
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.hashTableMask:()I
            iand
            istore 5 /* tableIndex */
        start local 5 // int tableIndex
         8: .line 394
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 5 /* tableIndex */
            iaload
            istore 6 /* lastNext */
        start local 6 // int lastNext
         9: .line 395
            iload 6 /* lastNext */
            iload 2 /* srcIndex */
            if_icmpne 12
        10: .line 397
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iload 5 /* tableIndex */
            iload 1 /* dstIndex */
            iastore
        11: .line 398
            goto 20
        12: .line 403
      StackMap locals: com.google.common.collect.CompactHashSet int int long int int
      StackMap stack:
            iload 6 /* lastNext */
            istore 7 /* previous */
        start local 7 // int previous
        13: .line 404
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 6 /* lastNext */
            laload
            dup2
            lstore 8 /* entry */
        start local 8 // long entry
        14: invokestatic com.google.common.collect.CompactHashSet.getNext:(J)I
            istore 6 /* lastNext */
        15: .line 405
            iload 6 /* lastNext */
            iload 2 /* srcIndex */
            if_icmpne 12
        16: .line 407
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 7 /* previous */
            lload 8 /* entry */
            iload 1 /* dstIndex */
            invokestatic com.google.common.collect.CompactHashSet.swapNext:(JI)J
            lastore
        end local 8 // long entry
        end local 7 // int previous
        end local 6 // int lastNext
        end local 5 // int tableIndex
        end local 3 // long lastEntry
        17: .line 409
            goto 20
        18: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aconst_null
            aastore
        19: .line 411
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            iload 1 /* dstIndex */
            ldc -1
            lastore
        20: .line 413
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int srcIndex
        end local 1 // int dstIndex
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0   21     1    dstIndex  I
            1   21     2    srcIndex  I
            5   17     3   lastEntry  J
            8   17     5  tableIndex  I
            9   17     6    lastNext  I
           13   17     7    previous  I
           14   17     8       entry  J
    MethodParameters:
          Name  Flags
      dstIndex  

  int firstEntryIndex();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 416
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.isEmpty:()Z
            ifeq 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  int getSuccessor(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int entryIndex
         0: .line 420
            iload 1 /* entryIndex */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            if_icmpge 1
            iload 1 /* entryIndex */
            iconst_1
            iadd
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int entryIndex
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    3     1  entryIndex  I
    MethodParameters:
            Name  Flags
      entryIndex  

  int adjustAfterRemove(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // int indexBeforeRemove
        start local 2 // int indexRemoved
         0: .line 429
            iload 1 /* indexBeforeRemove */
            iconst_1
            isub
            ireturn
        end local 2 // int indexRemoved
        end local 1 // int indexBeforeRemove
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    1     1  indexBeforeRemove  I
            0    1     2       indexRemoved  I
    MethodParameters:
                   Name  Flags
      indexBeforeRemove  
      indexRemoved       

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 434
            new com.google.common.collect.CompactHashSet$1
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashSet$1.<init>:(Lcom/google/common/collect/CompactHashSet;)V
            areturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;

  public java.util.Spliterator<E> spliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 477
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            bipush 17
            invokestatic java.util.Spliterators.spliterator:([Ljava/lang/Object;III)Ljava/util/Spliterator;
            areturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;
    Signature: ()Ljava/util/Spliterator<TE;>;

  public void forEach(java.util.function.Consumer<? super E>);
    descriptor: (Ljava/util/function/Consumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.util.function.Consumer action
         0: .line 482
            aload 1 /* action */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 483
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 484
      StackMap locals: int
      StackMap stack:
            aload 1 /* action */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface java.util.function.Consumer.accept:(Ljava/lang/Object;)V
         4: .line 483
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 486
            return
        end local 1 // java.util.function.Consumer action
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    7     1  action  Ljava/util/function/Consumer<-TE;>;
            2    6     2       i  I
    Signature: (Ljava/util/function/Consumer<-TE;>;)V
    MethodParameters:
        Name  Flags
      action  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 490
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            ireturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 495
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 500
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.lang.Object[] a
         0: .line 506
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            aload 1 /* a */
            invokestatic com.google.common.collect.ObjectArrays.toArrayImpl:([Ljava/lang/Object;II[Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] a
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    1     1     a  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
      Name  Flags
      a     

  public void trimToSize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 514
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            istore 1 /* size */
        start local 1 // int size
         1: .line 515
            iload 1 /* size */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            arraylength
            if_icmpge 3
         2: .line 516
            aload 0 /* this */
            iload 1 /* size */
            invokevirtual com.google.common.collect.CompactHashSet.resizeEntries:(I)V
         3: .line 522
      StackMap locals: int
      StackMap stack:
            iconst_1
            iload 1 /* size */
            i2f
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.loadFactor:F
            fdiv
            f2i
            invokestatic java.lang.Integer.highestOneBit:(I)I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* minimumTableSize */
        start local 2 // int minimumTableSize
         4: .line 523
            iload 2 /* minimumTableSize */
            ldc 1073741824
            if_icmpge 8
         5: .line 524
            iload 1 /* size */
            i2d
            iload 2 /* minimumTableSize */
            i2d
            ddiv
            dstore 3 /* load */
        start local 3 // double load
         6: .line 525
            dload 3 /* load */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.loadFactor:F
            f2d
            dcmpl
            ifle 8
         7: .line 526
            iload 2 /* minimumTableSize */
            iconst_1
            ishl
            istore 2 /* minimumTableSize */
        end local 3 // double load
         8: .line 530
      StackMap locals: int
      StackMap stack:
            iload 2 /* minimumTableSize */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            arraylength
            if_icmpge 10
         9: .line 531
            aload 0 /* this */
            iload 2 /* minimumTableSize */
            invokevirtual com.google.common.collect.CompactHashSet.resizeTable:(I)V
        10: .line 533
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int minimumTableSize
        end local 1 // int size
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lcom/google/common/collect/CompactHashSet<TE;>;
            1   11     1              size  I
            4   11     2  minimumTableSize  I
            6    8     3              load  D

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashSet this
         0: .line 537
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashSet.modCount:I
            iconst_1
            iadd
            putfield com.google.common.collect.CompactHashSet.modCount:I
         1: .line 538
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.elements:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
         2: .line 539
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.table:[I
            iconst_m1
            invokestatic java.util.Arrays.fill:([II)V
         3: .line 540
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.entries:[J
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 541
            aload 0 /* this */
            iconst_0
            putfield com.google.common.collect.CompactHashSet.size:I
         5: .line 542
            return
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/google/common/collect/CompactHashSet<TE;>;

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.io.ObjectOutputStream stream
         0: .line 549
            aload 1 /* stream */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 550
            aload 1 /* stream */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashSet.size:I
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 551
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashSet.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: com.google.common.collect.CompactHashSet java.io.ObjectOutputStream top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* e */
        start local 2 // java.lang.Object e
         4: .line 552
            aload 1 /* stream */
            aload 2 /* e */
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
        end local 2 // java.lang.Object e
         5: .line 551
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 554
            return
        end local 1 // java.io.ObjectOutputStream stream
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    7     1  stream  Ljava/io/ObjectOutputStream;
            4    5     2       e  TE;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      stream  

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.google.common.collect.CompactHashSet this
        start local 1 // java.io.ObjectInputStream stream
         0: .line 558
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 559
            aload 0 /* this */
            iconst_3
            fconst_1
            invokevirtual com.google.common.collect.CompactHashSet.init:(IF)V
         2: .line 560
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* elementCount */
        start local 2 // int elementCount
         3: .line 561
            iload 2 /* elementCount */
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 562
      StackMap locals: int int
      StackMap stack:
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 4 /* element */
        start local 4 // java.lang.Object element
         6: .line 563
            aload 0 /* this */
            aload 4 /* element */
            invokevirtual com.google.common.collect.CompactHashSet.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // java.lang.Object element
         7: .line 561
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
            iload 3 /* i */
            ifge 5
        end local 3 // int i
         8: .line 565
            return
        end local 2 // int elementCount
        end local 1 // java.io.ObjectInputStream stream
        end local 0 // com.google.common.collect.CompactHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lcom/google/common/collect/CompactHashSet<TE;>;
            0    9     1        stream  Ljava/io/ObjectInputStream;
            3    9     2  elementCount  I
            4    8     3             i  I
            6    7     4       element  TE;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
        Name  Flags
      stream  
}
Signature: <E:Ljava/lang/Object;>Ljava/util/AbstractSet<TE;>;Ljava/io/Serializable;
SourceFile: "CompactHashSet.java"
NestMembers:
  com.google.common.collect.CompactHashSet$1
InnerClasses:
  com.google.common.collect.CompactHashSet$1
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()