public class com.carrotsearch.hppc.LongHashSet extends com.carrotsearch.hppc.AbstractLongCollection implements com.carrotsearch.hppc.LongLookupContainer, com.carrotsearch.hppc.LongSet, com.carrotsearch.hppc.Preallocable, java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.carrotsearch.hppc.LongHashSet
  super_class: com.carrotsearch.hppc.AbstractLongCollection
{
  public long[] keys;
    descriptor: [J
    flags: (0x0001) ACC_PUBLIC

  protected int assigned;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int mask;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int keyMixer;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int resizeAt;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean hasEmptyKey;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected double loadFactor;
    descriptor: D
    flags: (0x0004) ACC_PROTECTED

  protected com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer;
    descriptor: Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
    flags: (0x0004) ACC_PROTECTED

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            ldc Lcom/carrotsearch/hppc/LongHashSet;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 93
            aload 0 /* this */
            iconst_4
            ldc 0.75
            invokespecial com.carrotsearch.hppc.LongHashSet.<init>:(ID)V
         1: .line 94
            return
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/LongHashSet;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int expectedElements
         0: .line 102
            aload 0 /* this */
            iload 1 /* expectedElements */
            ldc 0.75
            invokespecial com.carrotsearch.hppc.LongHashSet.<init>:(ID)V
         1: .line 103
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/LongHashSet;
            0    2     1  expectedElements  I
    MethodParameters:
                  Name  Flags
      expectedElements  

  public void <init>(int, double);
    descriptor: (ID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int expectedElements
        start local 2 // double loadFactor
         0: .line 111
            aload 0 /* this */
            iload 1 /* expectedElements */
            dload 2 /* loadFactor */
            invokestatic com.carrotsearch.hppc.HashOrderMixing.defaultStrategy:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            invokespecial com.carrotsearch.hppc.LongHashSet.<init>:(IDLcom/carrotsearch/hppc/HashOrderMixingStrategy;)V
         1: .line 112
            return
        end local 2 // double loadFactor
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/LongHashSet;
            0    2     1  expectedElements  I
            0    2     2        loadFactor  D
    MethodParameters:
                  Name  Flags
      expectedElements  
      loadFactor        

  public void <init>(int, double, com.carrotsearch.hppc.HashOrderMixingStrategy);
    descriptor: (IDLcom/carrotsearch/hppc/HashOrderMixingStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int expectedElements
        start local 2 // double loadFactor
        start local 4 // com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer
         0: .line 127
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.AbstractLongCollection.<init>:()V
         1: .line 128
            aload 0 /* this */
            aload 4 /* orderMixer */
            putfield com.carrotsearch.hppc.LongHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         2: .line 129
            aload 0 /* this */
            aload 0 /* this */
            dload 2 /* loadFactor */
            invokevirtual com.carrotsearch.hppc.LongHashSet.verifyLoadFactor:(D)D
            putfield com.carrotsearch.hppc.LongHashSet.loadFactor:D
         3: .line 130
            aload 0 /* this */
            iload 1 /* expectedElements */
            invokevirtual com.carrotsearch.hppc.LongHashSet.ensureCapacity:(I)V
         4: .line 131
            return
        end local 4 // com.carrotsearch.hppc.HashOrderMixingStrategy orderMixer
        end local 2 // double loadFactor
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lcom/carrotsearch/hppc/LongHashSet;
            0    5     1  expectedElements  I
            0    5     2        loadFactor  D
            0    5     4        orderMixer  Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
    MethodParameters:
                  Name  Flags
      expectedElements  
      loadFactor        
      orderMixer        

  public void <init>(com.carrotsearch.hppc.LongContainer);
    descriptor: (Lcom/carrotsearch/hppc/LongContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.LongContainer container
         0: .line 137
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.LongContainer.size:()I
            invokespecial com.carrotsearch.hppc.LongHashSet.<init>:(I)V
         1: .line 138
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.LongHashSet.addAll:(Lcom/carrotsearch/hppc/LongContainer;)I
            pop
         2: .line 139
            return
        end local 1 // com.carrotsearch.hppc.LongContainer container
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0    3     1  container  Lcom/carrotsearch/hppc/LongContainer;
    MethodParameters:
           Name  Flags
      container  

  public boolean add(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 146
            lload 1 /* key */
            lconst_0
            lcmp
            ifne 7
         1: .line 147
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            laload
            lconst_0
            lcmp
            ifeq 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 3 /* added */
        start local 3 // boolean added
         5: .line 149
            aload 0 /* this */
            iconst_1
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         6: .line 150
            iload 3 /* added */
            ireturn
        end local 3 // boolean added
         7: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* keys */
        start local 3 // long[] keys
         8: .line 153
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 4 /* mask */
        start local 4 // int mask
         9: .line 154
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
        10: .line 157
            goto 14
        start local 6 // long existing
        11: .line 158
      StackMap locals: com.carrotsearch.hppc.LongHashSet long long[] int int long
      StackMap stack:
            lload 6 /* existing */
            lload 1 /* key */
            lcmp
            ifne 13
        12: .line 159
            iconst_0
            ireturn
        13: .line 161
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // long existing
        14: .line 157
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 5 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
        15: lconst_0
            lcmp
            ifne 11
        16: .line 164
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.resizeAt:I
            if_icmpne 19
        17: .line 165
            aload 0 /* this */
            iload 5 /* slot */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.allocateThenInsertThenRehash:(IJ)V
        18: .line 166
            goto 20
        19: .line 167
      StackMap locals: long
      StackMap stack:
            aload 3 /* keys */
            iload 5 /* slot */
            lload 1 /* key */
            lastore
        20: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.LongHashSet.assigned:I
        21: .line 171
            iconst_1
            ireturn
        end local 6 // long existing
        end local 5 // int slot
        end local 4 // int mask
        end local 3 // long[] keys
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0   22     1       key  J
            5    7     3     added  Z
            8   22     3      keys  [J
            9   22     4      mask  I
           10   22     5      slot  I
           11   14     6  existing  J
           15   22     6  existing  J
    MethodParameters:
      Name  Flags
      key   

  public final int addAll(long[]);
    descriptor: ([J)I
    flags: (0x0091) ACC_PUBLIC, ACC_FINAL, ACC_VARARGS
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long[] elements
         0: .line 183
            aload 0 /* this */
            aload 1 /* elements */
            arraylength
            invokevirtual com.carrotsearch.hppc.LongHashSet.ensureCapacity:(I)V
         1: .line 184
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         2: .line 185
            aload 1 /* elements */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 7
      StackMap locals: com.carrotsearch.hppc.LongHashSet long[] int top top int int long[]
      StackMap stack:
         3: aload 7
            iload 5
            laload
            lstore 3 /* e */
        start local 3 // long e
         4: .line 186
            aload 0 /* this */
            lload 3 /* e */
            invokevirtual com.carrotsearch.hppc.LongHashSet.add:(J)Z
            ifeq 6
         5: .line 187
            iinc 2 /* count */ 1
        end local 3 // long e
         6: .line 185
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
         7: iload 5
            iload 6
            if_icmplt 3
         8: .line 190
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // long[] elements
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0    9     1  elements  [J
            2    9     2     count  I
            4    6     3         e  J
    MethodParameters:
          Name  Flags
      elements  

  public int addAll(com.carrotsearch.hppc.LongContainer);
    descriptor: (Lcom/carrotsearch/hppc/LongContainer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.LongContainer container
         0: .line 200
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.LongContainer.size:()I
            invokevirtual com.carrotsearch.hppc.LongHashSet.ensureCapacity:(I)V
         1: .line 201
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.LongHashSet.addAll:(Ljava/lang/Iterable;)I
            ireturn
        end local 1 // com.carrotsearch.hppc.LongContainer container
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0    2     1  container  Lcom/carrotsearch/hppc/LongContainer;
    MethodParameters:
           Name  Flags
      container  

  public int addAll(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.LongCursor>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // java.lang.Iterable iterable
         0: .line 211
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 212
            aload 1 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.carrotsearch.hppc.LongHashSet java.lang.Iterable int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.LongCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.LongCursor cursor
         3: .line 213
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.LongCursor.value:J
            invokevirtual com.carrotsearch.hppc.LongHashSet.add:(J)Z
            ifeq 5
         4: .line 214
            iinc 2 /* count */ 1
        end local 3 // com.carrotsearch.hppc.cursors.LongCursor cursor
         5: .line 212
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 217
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // java.lang.Iterable iterable
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/LongCursor;>;
            1    7     2     count  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/LongCursor;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/LongCursor;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public long[] toArray();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 226
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            newarray 11
            astore 1 /* cloned */
        start local 1 // long[] cloned
         1: .line 227
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         2: .line 228
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 4
         3: .line 229
            aload 1 /* cloned */
            iload 2 /* j */
            iinc 2 /* j */ 1
            lconst_0
            lastore
         4: .line 232
      StackMap locals: long[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* keys */
        start local 3 // long[] keys
         5: .line 233
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         6: aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 5 /* max */
        start local 5 // int max
         7: goto 12
         8: .line 235
      StackMap locals: long[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
         9: lconst_0
            lcmp
            ifeq 11
        10: .line 236
            aload 1 /* cloned */
            iload 2 /* j */
            iinc 2 /* j */ 1
            lload 6 /* existing */
            lastore
        end local 6 // long existing
        11: .line 233
      StackMap locals:
      StackMap stack:
            iinc 4 /* slot */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* slot */
            iload 5 /* max */
            if_icmple 8
        end local 5 // int max
        end local 4 // int slot
        13: .line 240
            aload 1 /* cloned */
            areturn
        end local 3 // long[] keys
        end local 2 // int j
        end local 1 // long[] cloned
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            1   14     1    cloned  [J
            2   14     2         j  I
            5   14     3      keys  [J
            6   13     4      slot  I
            7   13     5       max  I
            9   11     6  existing  J

  public boolean remove(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 247
            lload 1 /* key */
            lconst_0
            lcmp
            ifne 4
         1: .line 248
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            istore 3 /* hadEmptyKey */
        start local 3 // boolean hadEmptyKey
         2: .line 249
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         3: .line 250
            iload 3 /* hadEmptyKey */
            ireturn
        end local 3 // boolean hadEmptyKey
         4: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* keys */
        start local 3 // long[] keys
         5: .line 253
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 4 /* mask */
        start local 4 // int mask
         6: .line 254
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         7: .line 257
            goto 12
        start local 6 // long existing
         8: .line 258
      StackMap locals: com.carrotsearch.hppc.LongHashSet long long[] int int long
      StackMap stack:
            lload 6 /* existing */
            lload 1 /* key */
            lcmp
            ifne 11
         9: .line 259
            aload 0 /* this */
            iload 5 /* slot */
            invokevirtual com.carrotsearch.hppc.LongHashSet.shiftConflictingKeys:(I)V
        10: .line 260
            iconst_1
            ireturn
        11: .line 262
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // long existing
        12: .line 257
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 5 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
        13: lconst_0
            lcmp
            ifne 8
        14: .line 264
            iconst_0
            ireturn
        end local 6 // long existing
        end local 5 // int slot
        end local 4 // int mask
        end local 3 // long[] keys
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lcom/carrotsearch/hppc/LongHashSet;
            0   15     1          key  J
            2    4     3  hadEmptyKey  Z
            5   15     3         keys  [J
            6   15     4         mask  I
            7   15     5         slot  I
            8   12     6     existing  J
           13   15     6     existing  J
    MethodParameters:
      Name  Flags
      key   

  public int removeAll(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 273
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.remove:(J)Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/LongHashSet;
            0    3     1   key  J
    MethodParameters:
      Name  Flags
      key   

  public int removeAll(com.carrotsearch.hppc.predicates.LongPredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/LongPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.predicates.LongPredicate predicate
         0: .line 281
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            istore 2 /* before */
        start local 2 // int before
         1: .line 283
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 4
         2: .line 284
            aload 1 /* predicate */
            lconst_0
            invokeinterface com.carrotsearch.hppc.predicates.LongPredicate.apply:(J)Z
            ifeq 4
         3: .line 285
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         4: .line 289
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* keys */
        start local 3 // long[] keys
         5: .line 290
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         6: aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 5 /* max */
        start local 5 // int max
         7: goto 14
         8: .line 292
      StackMap locals: long[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
         9: lconst_0
            lcmp
            ifeq 13
        10: .line 293
            aload 1 /* predicate */
            lload 6 /* existing */
            invokeinterface com.carrotsearch.hppc.predicates.LongPredicate.apply:(J)Z
            ifeq 13
        11: .line 294
            aload 0 /* this */
            iload 4 /* slot */
            invokevirtual com.carrotsearch.hppc.LongHashSet.shiftConflictingKeys:(I)V
        12: .line 295
            goto 14
        13: .line 298
      StackMap locals: long
      StackMap stack:
            iinc 4 /* slot */ 1
        end local 6 // long existing
        14: .line 290
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iload 5 /* max */
            if_icmple 8
        end local 5 // int max
        end local 4 // int slot
        15: .line 301
            iload 2 /* before */
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            isub
            ireturn
        end local 3 // long[] keys
        end local 2 // int before
        end local 1 // com.carrotsearch.hppc.predicates.LongPredicate predicate
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0   16     1  predicate  Lcom/carrotsearch/hppc/predicates/LongPredicate;
            1   16     2     before  I
            5   16     3       keys  [J
            6   15     4       slot  I
            7   15     5        max  I
            9   14     6   existing  J
    MethodParameters:
           Name  Flags
      predicate  

  public boolean contains(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 309
            lload 1 /* key */
            lconst_0
            lcmp
            ifne 2
         1: .line 310
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ireturn
         2: .line 312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* keys */
        start local 3 // long[] keys
         3: .line 313
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 4 /* mask */
        start local 4 // int mask
         4: .line 314
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         5: .line 316
            goto 9
        start local 6 // long existing
         6: .line 317
      StackMap locals: com.carrotsearch.hppc.LongHashSet long long[] int int long
      StackMap stack:
            lload 6 /* existing */
            lload 1 /* key */
            lcmp
            ifne 8
         7: .line 318
            iconst_1
            ireturn
         8: .line 320
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // long existing
         9: .line 316
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 5 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
        10: lconst_0
            lcmp
            ifne 6
        11: .line 322
            iconst_0
            ireturn
        end local 6 // long existing
        end local 5 // int slot
        end local 4 // int mask
        end local 3 // long[] keys
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0   12     1       key  J
            3   12     3      keys  [J
            4   12     4      mask  I
            5   12     5      slot  I
            6    9     6  existing  J
           10   12     6  existing  J
    MethodParameters:
      Name  Flags
      key   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 331
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.assigned:I
         1: .line 332
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         2: .line 333
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            lconst_0
            invokestatic java.util.Arrays.fill:([JJ)V
         3: .line 334
            return
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/carrotsearch/hppc/LongHashSet;

  public void release();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 341
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.assigned:I
         1: .line 342
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         2: .line 343
            aload 0 /* this */
            aconst_null
            putfield com.carrotsearch.hppc.LongHashSet.keys:[J
         3: .line 344
            aload 0 /* this */
            iconst_4
            invokevirtual com.carrotsearch.hppc.LongHashSet.ensureCapacity:(I)V
         4: .line 345
            return
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/LongHashSet;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 352
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/LongHashSet;

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int expectedElements
         0: .line 363
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.resizeAt:I
            if_icmpgt 1
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            ifnonnull 5
         1: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* prevKeys */
        start local 2 // long[] prevKeys
         2: .line 365
            aload 0 /* this */
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.minBufferSize:(ID)I
            invokevirtual com.carrotsearch.hppc.LongHashSet.allocateBuffers:(I)V
         3: .line 366
            aload 2 /* prevKeys */
            ifnull 5
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.isEmpty:()Z
            ifne 5
         4: .line 367
            aload 0 /* this */
            aload 2 /* prevKeys */
            invokevirtual com.carrotsearch.hppc.LongHashSet.rehash:([J)V
        end local 2 // long[] prevKeys
         5: .line 370
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lcom/carrotsearch/hppc/LongHashSet;
            0    6     1  expectedElements  I
            2    5     2          prevKeys  [J
    MethodParameters:
                  Name  Flags
      expectedElements  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 377
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: com.carrotsearch.hppc.LongHashSet
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/LongHashSet;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 385
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 1
            ldc -559038737
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* h */
        start local 1 // int h
         3: .line 386
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* keys */
        start local 2 // long[] keys
         4: .line 387
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 3 /* slot */
        start local 3 // int slot
         5: goto 10
         6: .line 389
      StackMap locals: int long[] int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            laload
            dup2
            lstore 4 /* existing */
        start local 4 // long existing
         7: lconst_0
            lcmp
            ifeq 9
         8: .line 390
            iload 1 /* h */
            lload 4 /* existing */
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(J)I
            iadd
            istore 1 /* h */
        end local 4 // long existing
         9: .line 387
      StackMap locals:
      StackMap stack:
            iinc 3 /* slot */ -1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* slot */
            ifge 6
        end local 3 // int slot
        11: .line 393
            iload 1 /* h */
            ireturn
        end local 2 // long[] keys
        end local 1 // int h
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            3   12     1         h  I
            4   12     2      keys  [J
            5   11     3      slot  I
            7    9     4  existing  J

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // java.lang.Object obj
         0: .line 401
            aload 1 /* obj */
            ifnull 4
         1: .line 402
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpne 4
         2: .line 403
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.LongSet
            invokevirtual com.carrotsearch.hppc.LongHashSet.sameKeys:(Lcom/carrotsearch/hppc/LongSet;)Z
            ifeq 4
         3: .line 401
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/LongHashSet;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  private boolean sameKeys(com.carrotsearch.hppc.LongSet);
    descriptor: (Lcom/carrotsearch/hppc/LongSet;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.LongSet other
         0: .line 410
            aload 1 /* other */
            invokeinterface com.carrotsearch.hppc.LongSet.size:()I
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            if_icmpeq 2
         1: .line 411
            iconst_0
            ireturn
         2: .line 414
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokeinterface com.carrotsearch.hppc.LongSet.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: com.carrotsearch.hppc.LongHashSet com.carrotsearch.hppc.LongSet top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.LongCursor
            astore 2 /* c */
        start local 2 // com.carrotsearch.hppc.cursors.LongCursor c
         4: .line 415
            aload 0 /* this */
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.LongCursor.value:J
            invokevirtual com.carrotsearch.hppc.LongHashSet.contains:(J)Z
            ifne 6
         5: .line 416
            iconst_0
            ireturn
        end local 2 // com.carrotsearch.hppc.cursors.LongCursor c
         6: .line 414
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 420
            iconst_1
            ireturn
        end local 1 // com.carrotsearch.hppc.LongSet other
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/carrotsearch/hppc/LongHashSet;
            0    8     1  other  Lcom/carrotsearch/hppc/LongSet;
            4    6     2      c  Lcom/carrotsearch/hppc/cursors/LongCursor;
    MethodParameters:
       Name  Flags
      other  

  public com.carrotsearch.hppc.LongHashSet clone();
    descriptor: ()Lcom/carrotsearch/hppc/LongHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 430
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.LongHashSet
            astore 1 /* cloned */
        start local 1 // com.carrotsearch.hppc.LongHashSet cloned
         1: .line 431
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            putfield com.carrotsearch.hppc.LongHashSet.keys:[J
         2: .line 432
            aload 1 /* cloned */
            aload 1 /* cloned */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         3: .line 433
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            invokeinterface com.carrotsearch.hppc.HashOrderMixingStrategy.clone:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            putfield com.carrotsearch.hppc.LongHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         4: .line 434
            aload 1 /* cloned */
         5: areturn
        end local 1 // com.carrotsearch.hppc.LongHashSet cloned
         6: .line 435
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         7: .line 436
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/carrotsearch/hppc/LongHashSet;
            1    6     1  cloned  Lcom/carrotsearch/hppc/LongHashSet;
            7    8     1       e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     5       6  Class java.lang.CloneNotSupportedException

  public java.util.Iterator<com.carrotsearch.hppc.cursors.LongCursor> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.LongHashSet this
         0: .line 445
            new com.carrotsearch.hppc.LongHashSet$EntryIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.LongHashSet$EntryIterator.<init>:(Lcom/carrotsearch/hppc/LongHashSet;)V
            areturn
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/LongHashSet;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/LongCursor;>;

  public <T extends com.carrotsearch.hppc.procedures.LongProcedure> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/LongProcedure;)Lcom/carrotsearch/hppc/procedures/LongProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.procedures.LongProcedure procedure
         0: .line 489
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 2
         1: .line 490
            aload 1 /* procedure */
            lconst_0
            invokeinterface com.carrotsearch.hppc.procedures.LongProcedure.apply:(J)V
         2: .line 493
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* keys */
        start local 2 // long[] keys
         3: .line 494
            iconst_0
            istore 3 /* slot */
        start local 3 // int slot
         4: aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 4 /* max */
        start local 4 // int max
         5: goto 10
         6: .line 496
      StackMap locals: long[] int int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            laload
            dup2
            lstore 5 /* existing */
        start local 5 // long existing
         7: lconst_0
            lcmp
            ifeq 9
         8: .line 497
            aload 1 /* procedure */
            lload 5 /* existing */
            invokeinterface com.carrotsearch.hppc.procedures.LongProcedure.apply:(J)V
        end local 5 // long existing
         9: .line 494
      StackMap locals:
      StackMap stack:
            iinc 3 /* slot */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* slot */
            iload 4 /* max */
            if_icmple 6
        end local 4 // int max
        end local 3 // int slot
        11: .line 501
            aload 1 /* procedure */
            areturn
        end local 2 // long[] keys
        end local 1 // com.carrotsearch.hppc.procedures.LongProcedure procedure
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0   12     1  procedure  TT;
            3   12     2       keys  [J
            4   11     3       slot  I
            5   11     4        max  I
            7    9     5   existing  J
    Signature: <T::Lcom/carrotsearch/hppc/procedures/LongProcedure;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  public <T extends com.carrotsearch.hppc.predicates.LongPredicate> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/LongPredicate;)Lcom/carrotsearch/hppc/predicates/LongPredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // com.carrotsearch.hppc.predicates.LongPredicate predicate
         0: .line 509
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 3
         1: .line 510
            aload 1 /* predicate */
            lconst_0
            invokeinterface com.carrotsearch.hppc.predicates.LongPredicate.apply:(J)Z
            ifne 3
         2: .line 511
            aload 1 /* predicate */
            areturn
         3: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* keys */
        start local 2 // long[] keys
         4: .line 516
            iconst_0
            istore 3 /* slot */
        start local 3 // int slot
         5: aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 4 /* max */
        start local 4 // int max
         6: goto 12
         7: .line 518
      StackMap locals: long[] int int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            laload
            dup2
            lstore 5 /* existing */
        start local 5 // long existing
         8: lconst_0
            lcmp
            ifeq 11
         9: .line 519
            aload 1 /* predicate */
            lload 5 /* existing */
            invokeinterface com.carrotsearch.hppc.predicates.LongPredicate.apply:(J)Z
            ifne 11
        10: .line 520
            goto 13
        end local 5 // long existing
        11: .line 516
      StackMap locals:
      StackMap stack:
            iinc 3 /* slot */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* slot */
            iload 4 /* max */
            if_icmple 7
        end local 4 // int max
        end local 3 // int slot
        13: .line 525
      StackMap locals:
      StackMap stack:
            aload 1 /* predicate */
            areturn
        end local 2 // long[] keys
        end local 1 // com.carrotsearch.hppc.predicates.LongPredicate predicate
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0   14     1  predicate  TT;
            4   14     2       keys  [J
            5   13     3       slot  I
            6   13     4        max  I
            8   11     5   existing  J
    Signature: <T::Lcom/carrotsearch/hppc/predicates/LongPredicate;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

  public static com.carrotsearch.hppc.LongHashSet from(long[]);
    descriptor: ([J)Lcom/carrotsearch/hppc/LongHashSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // long[] elements
         0: .line 535
            new com.carrotsearch.hppc.LongHashSet
            dup
            aload 0 /* elements */
            arraylength
            invokespecial com.carrotsearch.hppc.LongHashSet.<init>:(I)V
            astore 1 /* set */
        start local 1 // com.carrotsearch.hppc.LongHashSet set
         1: .line 536
            aload 1 /* set */
            aload 0 /* elements */
            invokevirtual com.carrotsearch.hppc.LongHashSet.addAll:([J)I
            pop
         2: .line 537
            aload 1 /* set */
            areturn
        end local 1 // com.carrotsearch.hppc.LongHashSet set
        end local 0 // long[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  elements  [J
            1    3     1       set  Lcom/carrotsearch/hppc/LongHashSet;
    MethodParameters:
          Name  Flags
      elements  

  protected int hashKey(long);
    descriptor: (J)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 553
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            lload 1 /* key */
            lconst_0
            lcmp
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 554
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keyMixer:I
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(JI)I
            ireturn
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/LongHashSet;
            0    2     1   key  J
    MethodParameters:
      Name  Flags
      key   

  public int indexOf(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long key
         0: .line 578
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         1: .line 579
            lload 1 /* key */
            lconst_0
            lcmp
            ifne 5
         2: .line 580
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifeq 3
            iload 3 /* mask */
            iconst_1
            iadd
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iload 3 /* mask */
            iconst_1
            iadd
            iconst_m1
            ixor
      StackMap locals:
      StackMap stack: int
         4: ireturn
         5: .line 582
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 4 /* keys */
        start local 4 // long[] keys
         6: .line 583
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            iload 3 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         7: .line 586
            goto 11
        start local 6 // long existing
         8: .line 587
      StackMap locals: long[] int long
      StackMap stack:
            lload 6 /* existing */
            lload 1 /* key */
            lcmp
            ifne 10
         9: .line 588
            iload 5 /* slot */
            ireturn
        10: .line 590
      StackMap locals:
      StackMap stack:
            iload 5 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 5 /* slot */
        end local 6 // long existing
        11: .line 586
      StackMap locals:
      StackMap stack:
            aload 4 /* keys */
            iload 5 /* slot */
            laload
            dup2
            lstore 6 /* existing */
        start local 6 // long existing
        12: lconst_0
            lcmp
            ifne 8
        13: .line 593
            iload 5 /* slot */
            iconst_m1
            ixor
            ireturn
        end local 6 // long existing
        end local 5 // int slot
        end local 4 // long[] keys
        end local 3 // int mask
        end local 1 // long key
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0   14     1       key  J
            1   14     3      mask  I
            6   14     4      keys  [J
            7   14     5      slot  I
            8   11     6  existing  J
           12   14     6  existing  J
    MethodParameters:
      Name  Flags
      key   

  public boolean indexExists(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int index
         0: .line 606
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            iflt 4
         1: .line 607
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            if_icmple 4
         2: .line 608
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 610
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iflt 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/carrotsearch/hppc/LongHashSet;
            0    6     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long indexGet(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int index
         0: .line 625
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            ifge 1
            new java.lang.AssertionError
            dup
            ldc "The index must point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 626
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            if_icmple 4
         2: .line 627
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 629
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            laload
            lreturn
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/carrotsearch/hppc/LongHashSet;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long indexReplace(int, long);
    descriptor: (IJ)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int index
        start local 2 // long equivalentKey
         0: .line 646
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            ifge 1
            new java.lang.AssertionError
            dup
            ldc "The index must point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 647
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            if_icmple 4
         2: .line 648
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 649
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 5
            lload 2 /* equivalentKey */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            laload
            lcmp
            ifeq 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 651
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            laload
            lstore 4 /* previousValue */
        start local 4 // long previousValue
         6: .line 652
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            lload 2 /* equivalentKey */
            lastore
         7: .line 653
            lload 4 /* previousValue */
            lreturn
        end local 4 // long previousValue
        end local 2 // long equivalentKey
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lcom/carrotsearch/hppc/LongHashSet;
            0    8     1          index  I
            0    8     2  equivalentKey  J
            6    8     4  previousValue  J
    MethodParameters:
               Name  Flags
      index          
      equivalentKey  

  public void indexInsert(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int index
        start local 2 // long key
         0: .line 668
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            iload 1 /* index */
            iflt 1
            new java.lang.AssertionError
            dup
            ldc "The index must not point at an existing key."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 670
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_m1
            ixor
            istore 1 /* index */
         2: .line 671
            lload 2 /* key */
            lconst_0
            lcmp
            ifne 7
         3: .line 672
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            if_icmpeq 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 673
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            laload
            lconst_0
            lcmp
            ifeq 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 674
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.carrotsearch.hppc.LongHashSet.hasEmptyKey:Z
         6: .line 675
            goto 13
         7: .line 676
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            laload
            lconst_0
            lcmp
            ifeq 8
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         8: .line 678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.resizeAt:I
            if_icmpne 11
         9: .line 679
            aload 0 /* this */
            iload 1 /* index */
            lload 2 /* key */
            invokevirtual com.carrotsearch.hppc.LongHashSet.allocateThenInsertThenRehash:(IJ)V
        10: .line 680
            goto 12
        11: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* index */
            lload 2 /* key */
            lastore
        12: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.LongHashSet.assigned:I
        13: .line 686
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long key
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lcom/carrotsearch/hppc/LongHashSet;
            0   14     1  index  I
            0   14     2    key  J
    MethodParameters:
       Name  Flags
      index  
      key    

  public java.lang.String visualizeKeyDistribution(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int characters
         0: .line 690
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iload 1 /* characters */
            invokestatic com.carrotsearch.hppc.LongBufferVisualizer.visualizeKeyDistribution:([JII)Ljava/lang/String;
            areturn
        end local 1 // int characters
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/carrotsearch/hppc/LongHashSet;
            0    1     1  characters  I
    MethodParameters:
            Name  Flags
      characters  

  protected double verifyLoadFactor(double);
    descriptor: (D)D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // double loadFactor
         0: .line 698
            dload 1 /* loadFactor */
            ldc 0.009999999776482582
            ldc 0.9900000095367432
            invokestatic com.carrotsearch.hppc.HashContainers.checkLoadFactor:(DDD)V
         1: .line 699
            dload 1 /* loadFactor */
            dreturn
        end local 1 // double loadFactor
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/carrotsearch/hppc/LongHashSet;
            0    2     1  loadFactor  D
    MethodParameters:
            Name  Flags
      loadFactor  

  protected void rehash(long[]);
    descriptor: ([J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // long[] fromKeys
         0: .line 706
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            aload 1 /* fromKeys */
            arraylength
            iconst_1
            isub
            invokestatic com.carrotsearch.hppc.HashContainers.checkPowerOfTwo:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 709
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* keys */
        start local 2 // long[] keys
         2: .line 710
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         3: .line 712
            aload 1 /* fromKeys */
            arraylength
            iconst_1
            isub
            istore 6 /* i */
        start local 6 // int i
         4: goto 12
         5: .line 713
      StackMap locals: com.carrotsearch.hppc.LongHashSet long[] long[] int top top int
      StackMap stack:
            aload 1 /* fromKeys */
            iload 6 /* i */
            laload
            dup2
            lstore 4 /* existing */
        start local 4 // long existing
         6: lconst_0
            lcmp
            ifeq 12
         7: .line 714
            aload 0 /* this */
            lload 4 /* existing */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            iload 3 /* mask */
            iand
            istore 7 /* slot */
        start local 7 // int slot
         8: .line 715
            goto 10
         9: .line 716
      StackMap locals: com.carrotsearch.hppc.LongHashSet long[] long[] int long int int
      StackMap stack:
            iload 7 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 7 /* slot */
        10: .line 715
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 7 /* slot */
            laload
            lconst_0
            lcmp
            ifne 9
        11: .line 718
            aload 2 /* keys */
            iload 7 /* slot */
            lload 4 /* existing */
            lastore
        end local 7 // int slot
        end local 4 // long existing
        12: .line 712
      StackMap locals: com.carrotsearch.hppc.LongHashSet long[] long[] int top top int
      StackMap stack:
            iinc 6 /* i */ -1
            iload 6 /* i */
            ifge 5
        end local 6 // int i
        13: .line 721
            return
        end local 3 // int mask
        end local 2 // long[] keys
        end local 1 // long[] fromKeys
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/LongHashSet;
            0   14     1  fromKeys  [J
            2   14     2      keys  [J
            3   14     3      mask  I
            6   12     4  existing  J
            4   13     6         i  I
            8   12     7      slot  I
    MethodParameters:
          Name  Flags
      fromKeys  

  protected void allocateBuffers(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int arraySize
         0: .line 728
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 1
            iload 1 /* arraySize */
            invokestatic java.lang.Integer.bitCount:(I)I
            iconst_1
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 731
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            iload 1 /* arraySize */
            invokeinterface com.carrotsearch.hppc.HashOrderMixingStrategy.newKeyMixer:(I)I
            istore 2 /* newKeyMixer */
        start local 2 // int newKeyMixer
         2: .line 734
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 3 /* prevKeys */
        start local 3 // long[] prevKeys
         3: .line 736
            iconst_1
            istore 4 /* emptyElementSlot */
        start local 4 // int emptyElementSlot
         4: .line 737
            aload 0 /* this */
            iload 1 /* arraySize */
            iload 4 /* emptyElementSlot */
            iadd
            newarray 11
            putfield com.carrotsearch.hppc.LongHashSet.keys:[J
        end local 4 // int emptyElementSlot
         5: .line 738
            goto 16
      StackMap locals: com.carrotsearch.hppc.LongHashSet int int long[]
      StackMap stack: java.lang.OutOfMemoryError
         6: astore 4 /* e */
        start local 4 // java.lang.OutOfMemoryError e
         7: .line 739
            aload 0 /* this */
            aload 3 /* prevKeys */
            putfield com.carrotsearch.hppc.LongHashSet.keys:[J
         8: .line 740
            new com.carrotsearch.hppc.BufferAllocationException
            dup
         9: .line 741
            ldc "Not enough memory to allocate buffers for rehashing: %,d -> %,d"
        10: .line 742
            aload 4 /* e */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
        11: .line 743
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            ifnonnull 12
            iconst_0
            goto 13
      StackMap locals: com.carrotsearch.hppc.LongHashSet int int long[] java.lang.OutOfMemoryError
      StackMap stack: new 8 new 8 java.lang.String java.lang.OutOfMemoryError java.lang.Object[] java.lang.Object[] int
        12: aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
      StackMap locals: com.carrotsearch.hppc.LongHashSet int int long[] java.lang.OutOfMemoryError
      StackMap stack: new 8 new 8 java.lang.String java.lang.OutOfMemoryError java.lang.Object[] java.lang.Object[] int int
        13: invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
        14: .line 744
            iload 1 /* arraySize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
        15: .line 740
            aastore
            invokespecial com.carrotsearch.hppc.BufferAllocationException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;[Ljava/lang/Object;)V
            athrow
        end local 4 // java.lang.OutOfMemoryError e
        16: .line 747
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* arraySize */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.expandAtCount:(ID)I
            putfield com.carrotsearch.hppc.LongHashSet.resizeAt:I
        17: .line 748
            aload 0 /* this */
            iload 2 /* newKeyMixer */
            putfield com.carrotsearch.hppc.LongHashSet.keyMixer:I
        18: .line 749
            aload 0 /* this */
            iload 1 /* arraySize */
            iconst_1
            isub
            putfield com.carrotsearch.hppc.LongHashSet.mask:I
        19: .line 750
            return
        end local 3 // long[] prevKeys
        end local 2 // int newKeyMixer
        end local 1 // int arraySize
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   20     0              this  Lcom/carrotsearch/hppc/LongHashSet;
            0   20     1         arraySize  I
            2   20     2       newKeyMixer  I
            3   20     3          prevKeys  [J
            4    5     4  emptyElementSlot  I
            7   16     4                 e  Ljava/lang/OutOfMemoryError;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.OutOfMemoryError
    MethodParameters:
           Name  Flags
      arraySize  

  protected void allocateThenInsertThenRehash(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int slot
        start local 2 // long pendingKey
         0: .line 762
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 4
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.resizeAt:I
            if_icmpne 3
         1: .line 763
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            iload 1 /* slot */
            laload
            lconst_0
            lcmp
            ifne 3
         2: .line 764
            lload 2 /* pendingKey */
            lconst_0
            lcmp
            ifne 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 767
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 4 /* prevKeys */
        start local 4 // long[] prevKeys
         5: .line 768
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            iconst_1
            iadd
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.LongHashSet.size:()I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.nextBufferSize:(IID)I
            invokevirtual com.carrotsearch.hppc.LongHashSet.allocateBuffers:(I)V
         6: .line 769
            getstatic com.carrotsearch.hppc.LongHashSet.$assertionsDisabled:Z
            ifne 7
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            arraylength
            aload 4 /* prevKeys */
            arraylength
            if_icmpgt 7
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         7: .line 773
      StackMap locals: long[]
      StackMap stack:
            aload 4 /* prevKeys */
            iload 1 /* slot */
            lload 2 /* pendingKey */
            lastore
         8: .line 776
            aload 0 /* this */
            aload 4 /* prevKeys */
            invokevirtual com.carrotsearch.hppc.LongHashSet.rehash:([J)V
         9: .line 777
            return
        end local 4 // long[] prevKeys
        end local 2 // long pendingKey
        end local 1 // int slot
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lcom/carrotsearch/hppc/LongHashSet;
            0   10     1        slot  I
            0   10     2  pendingKey  J
            5   10     4    prevKeys  [J
    MethodParameters:
            Name  Flags
      slot        
      pendingKey  

  protected void shiftConflictingKeys(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // com.carrotsearch.hppc.LongHashSet this
        start local 1 // int gapSlot
         0: .line 783
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.keys:[J
            astore 2 /* keys */
        start local 2 // long[] keys
         1: .line 784
            aload 0 /* this */
            getfield com.carrotsearch.hppc.LongHashSet.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         2: .line 787
            iconst_0
            istore 4 /* distance */
        start local 4 // int distance
         3: .line 789
      StackMap locals: long[] int int
      StackMap stack:
            iload 1 /* gapSlot */
            iinc 4 /* distance */ 1
            iload 4 /* distance */
            iadd
            iload 3 /* mask */
            iand
            istore 5 /* slot */
        start local 5 // int slot
         4: .line 790
            aload 2 /* keys */
            iload 5 /* slot */
            laload
            lstore 6 /* existing */
        start local 6 // long existing
         5: .line 791
            lload 6 /* existing */
            lconst_0
            lcmp
            ifne 7
         6: .line 792
            goto 14
         7: .line 795
      StackMap locals: int long
      StackMap stack:
            aload 0 /* this */
            lload 6 /* existing */
            invokevirtual com.carrotsearch.hppc.LongHashSet.hashKey:(J)I
            istore 8 /* idealSlot */
        start local 8 // int idealSlot
         8: .line 796
            iload 5 /* slot */
            iload 8 /* idealSlot */
            isub
            iload 3 /* mask */
            iand
            istore 9 /* shift */
        start local 9 // int shift
         9: .line 797
            iload 9 /* shift */
            iload 4 /* distance */
            if_icmplt 3
        10: .line 802
            aload 2 /* keys */
            iload 1 /* gapSlot */
            lload 6 /* existing */
            lastore
        11: .line 803
            iload 5 /* slot */
            istore 1 /* gapSlot */
        12: .line 804
            iconst_0
            istore 4 /* distance */
        end local 9 // int shift
        end local 8 // int idealSlot
        end local 6 // long existing
        end local 5 // int slot
        13: .line 788
            goto 3
        14: .line 809
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 1 /* gapSlot */
            lconst_0
            lastore
        15: .line 810
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.LongHashSet.assigned:I
            iconst_1
            isub
            putfield com.carrotsearch.hppc.LongHashSet.assigned:I
        16: .line 811
            return
        end local 4 // int distance
        end local 3 // int mask
        end local 2 // long[] keys
        end local 1 // int gapSlot
        end local 0 // com.carrotsearch.hppc.LongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lcom/carrotsearch/hppc/LongHashSet;
            0   17     1    gapSlot  I
            1   17     2       keys  [J
            2   17     3       mask  I
            3   17     4   distance  I
            4   13     5       slot  I
            5   13     6   existing  J
            8   13     8  idealSlot  I
            9   13     9      shift  I
    MethodParameters:
         Name  Flags
      gapSlot  

  public int retainAll(com.carrotsearch.hppc.predicates.LongPredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/LongPredicate;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractLongCollection.retainAll:(Lcom/carrotsearch/hppc/predicates/LongPredicate;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int retainAll(com.carrotsearch.hppc.LongLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/LongLookupContainer;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractLongCollection.retainAll:(Lcom/carrotsearch/hppc/LongLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.carrotsearch.hppc.AbstractLongCollection.toString:()Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int removeAll(com.carrotsearch.hppc.LongLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/LongLookupContainer;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokespecial com.carrotsearch.hppc.AbstractLongCollection.removeAll:(Lcom/carrotsearch/hppc/LongLookupContainer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.carrotsearch.hppc.LongHashSet.clone:()Lcom/carrotsearch/hppc/LongHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "LongHashSet.java"
NestMembers:
  com.carrotsearch.hppc.LongHashSet$EntryIterator
InnerClasses:
  protected final EntryIterator = com.carrotsearch.hppc.LongHashSet$EntryIterator of com.carrotsearch.hppc.LongHashSet