public class com.carrotsearch.hppc.CharHashSet extends com.carrotsearch.hppc.AbstractCharCollection implements com.carrotsearch.hppc.CharLookupContainer, com.carrotsearch.hppc.CharSet, 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.CharHashSet
  super_class: com.carrotsearch.hppc.AbstractCharCollection
{
  public char[] keys;
    descriptor: [C
    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/CharHashSet;
            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.CharHashSet.$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.CharHashSet this
         0: .line 93
            aload 0 /* this */
            iconst_4
            ldc 0.75
            invokespecial com.carrotsearch.hppc.CharHashSet.<init>:(ID)V
         1: .line 94
            return
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/CharHashSet;

  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.CharHashSet this
        start local 1 // int expectedElements
         0: .line 102
            aload 0 /* this */
            iload 1 /* expectedElements */
            ldc 0.75
            invokespecial com.carrotsearch.hppc.CharHashSet.<init>:(ID)V
         1: .line 103
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/CharHashSet;
            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.CharHashSet 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.CharHashSet.<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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lcom/carrotsearch/hppc/CharHashSet;
            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.CharHashSet 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.AbstractCharCollection.<init>:()V
         1: .line 128
            aload 0 /* this */
            aload 4 /* orderMixer */
            putfield com.carrotsearch.hppc.CharHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         2: .line 129
            aload 0 /* this */
            aload 0 /* this */
            dload 2 /* loadFactor */
            invokevirtual com.carrotsearch.hppc.CharHashSet.verifyLoadFactor:(D)D
            putfield com.carrotsearch.hppc.CharHashSet.loadFactor:D
         3: .line 130
            aload 0 /* this */
            iload 1 /* expectedElements */
            invokevirtual com.carrotsearch.hppc.CharHashSet.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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lcom/carrotsearch/hppc/CharHashSet;
            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.CharContainer);
    descriptor: (Lcom/carrotsearch/hppc/CharContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // com.carrotsearch.hppc.CharContainer container
         0: .line 137
            aload 0 /* this */
            aload 1 /* container */
            invokeinterface com.carrotsearch.hppc.CharContainer.size:()I
            invokespecial com.carrotsearch.hppc.CharHashSet.<init>:(I)V
         1: .line 138
            aload 0 /* this */
            aload 1 /* container */
            invokevirtual com.carrotsearch.hppc.CharHashSet.addAll:(Lcom/carrotsearch/hppc/CharContainer;)I
            pop
         2: .line 139
            return
        end local 1 // com.carrotsearch.hppc.CharContainer container
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/carrotsearch/hppc/CharHashSet;
            0    3     1  container  Lcom/carrotsearch/hppc/CharContainer;
    MethodParameters:
           Name  Flags
      container  

  public boolean add(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // char key
         0: .line 146
            iload 1 /* key */
            ifne 7
         1: .line 147
            getstatic com.carrotsearch.hppc.CharHashSet.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iconst_1
            iadd
            caload
            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.CharHashSet.hasEmptyKey:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 2 /* added */
        start local 2 // boolean added
         5: .line 149
            aload 0 /* this */
            iconst_1
            putfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
         6: .line 150
            iload 2 /* added */
            ireturn
        end local 2 // boolean added
         7: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         8: .line 153
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         9: .line 154
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual com.carrotsearch.hppc.CharHashSet.hashKey:(C)I
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
        10: .line 157
            goto 14
        start local 5 // char existing
        11: .line 158
      StackMap locals: com.carrotsearch.hppc.CharHashSet int char[] int int int
      StackMap stack:
            iload 5 /* existing */
            iload 1 /* key */
            if_icmpne 13
        12: .line 159
            iconst_0
            ireturn
        13: .line 161
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // char existing
        14: .line 157
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            caload
            dup
            istore 5 /* existing */
        start local 5 // char existing
        15: ifne 11
        16: .line 164
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.resizeAt:I
            if_icmpne 19
        17: .line 165
            aload 0 /* this */
            iload 4 /* slot */
            iload 1 /* key */
            invokevirtual com.carrotsearch.hppc.CharHashSet.allocateThenInsertThenRehash:(IC)V
        18: .line 166
            goto 20
        19: .line 167
      StackMap locals: int
      StackMap stack:
            aload 2 /* keys */
            iload 4 /* slot */
            iload 1 /* key */
            castore
        20: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.CharHashSet.assigned:I
        21: .line 171
            iconst_1
            ireturn
        end local 5 // char existing
        end local 4 // int slot
        end local 3 // int mask
        end local 2 // char[] keys
        end local 1 // char key
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            0   22     1       key  C
            5    7     2     added  Z
            8   22     2      keys  [C
            9   22     3      mask  I
           10   22     4      slot  I
           11   14     5  existing  C
           15   22     5  existing  C
    MethodParameters:
      Name  Flags
      key   

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

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

  public int addAll(java.lang.Iterable<? extends com.carrotsearch.hppc.cursors.CharCursor>);
    descriptor: (Ljava/lang/Iterable;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet 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.CharHashSet 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.CharCursor
            astore 3 /* cursor */
        start local 3 // com.carrotsearch.hppc.cursors.CharCursor cursor
         3: .line 213
            aload 0 /* this */
            aload 3 /* cursor */
            getfield com.carrotsearch.hppc.cursors.CharCursor.value:C
            invokevirtual com.carrotsearch.hppc.CharHashSet.add:(C)Z
            ifeq 5
         4: .line 214
            iinc 2 /* count */ 1
        end local 3 // com.carrotsearch.hppc.cursors.CharCursor 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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            0    7     1  iterable  Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/CharCursor;>;
            1    7     2     count  I
            3    5     3    cursor  Lcom/carrotsearch/hppc/cursors/CharCursor;
    Signature: (Ljava/lang/Iterable<+Lcom/carrotsearch/hppc/cursors/CharCursor;>;)I
    MethodParameters:
          Name  Flags
      iterable  

  public char[] toArray();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // com.carrotsearch.hppc.CharHashSet this
         0: .line 226
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.CharHashSet.size:()I
            newarray 5
            astore 1 /* cloned */
        start local 1 // char[] cloned
         1: .line 227
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         2: .line 228
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 4
         3: .line 229
            aload 1 /* cloned */
            iload 2 /* j */
            iinc 2 /* j */ 1
            iconst_0
            castore
         4: .line 232
      StackMap locals: char[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 3 /* keys */
        start local 3 // char[] keys
         5: .line 233
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         6: aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 5 /* max */
        start local 5 // int max
         7: goto 12
         8: .line 235
      StackMap locals: char[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            caload
            dup
            istore 6 /* existing */
        start local 6 // char existing
         9: ifeq 11
        10: .line 236
            aload 1 /* cloned */
            iload 2 /* j */
            iinc 2 /* j */ 1
            iload 6 /* existing */
            castore
        end local 6 // char 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 // char[] keys
        end local 2 // int j
        end local 1 // char[] cloned
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            1   14     1    cloned  [C
            2   14     2         j  I
            5   14     3      keys  [C
            6   13     4      slot  I
            7   13     5       max  I
            9   11     6  existing  C

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

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

  public int removeAll(com.carrotsearch.hppc.predicates.CharPredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/CharPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // com.carrotsearch.hppc.predicates.CharPredicate predicate
         0: .line 281
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.CharHashSet.size:()I
            istore 2 /* before */
        start local 2 // int before
         1: .line 283
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 4
         2: .line 284
            aload 1 /* predicate */
            iconst_0
            invokeinterface com.carrotsearch.hppc.predicates.CharPredicate.apply:(C)Z
            ifeq 4
         3: .line 285
            aload 0 /* this */
            iconst_0
            putfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
         4: .line 289
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 3 /* keys */
        start local 3 // char[] keys
         5: .line 290
            iconst_0
            istore 4 /* slot */
        start local 4 // int slot
         6: aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 5 /* max */
        start local 5 // int max
         7: goto 14
         8: .line 292
      StackMap locals: char[] int int
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            caload
            dup
            istore 6 /* existing */
        start local 6 // char existing
         9: ifeq 13
        10: .line 293
            aload 1 /* predicate */
            iload 6 /* existing */
            invokeinterface com.carrotsearch.hppc.predicates.CharPredicate.apply:(C)Z
            ifeq 13
        11: .line 294
            aload 0 /* this */
            iload 4 /* slot */
            invokevirtual com.carrotsearch.hppc.CharHashSet.shiftConflictingKeys:(I)V
        12: .line 295
            goto 14
        13: .line 298
      StackMap locals: int
      StackMap stack:
            iinc 4 /* slot */ 1
        end local 6 // char 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.CharHashSet.size:()I
            isub
            ireturn
        end local 3 // char[] keys
        end local 2 // int before
        end local 1 // com.carrotsearch.hppc.predicates.CharPredicate predicate
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lcom/carrotsearch/hppc/CharHashSet;
            0   16     1  predicate  Lcom/carrotsearch/hppc/predicates/CharPredicate;
            1   16     2     before  I
            5   16     3       keys  [C
            6   15     4       slot  I
            7   15     5        max  I
            9   14     6   existing  C
    MethodParameters:
           Name  Flags
      predicate  

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

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

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

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

  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.CharHashSet this
        start local 1 // int expectedElements
         0: .line 363
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.resizeAt:I
            if_icmpgt 1
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            ifnonnull 5
         1: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 2 /* prevKeys */
        start local 2 // char[] prevKeys
         2: .line 365
            aload 0 /* this */
            iload 1 /* expectedElements */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.minBufferSize:(ID)I
            invokevirtual com.carrotsearch.hppc.CharHashSet.allocateBuffers:(I)V
         3: .line 366
            aload 2 /* prevKeys */
            ifnull 5
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.CharHashSet.isEmpty:()Z
            ifne 5
         4: .line 367
            aload 0 /* this */
            aload 2 /* prevKeys */
            invokevirtual com.carrotsearch.hppc.CharHashSet.rehash:([C)V
        end local 2 // char[] prevKeys
         5: .line 370
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int expectedElements
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lcom/carrotsearch/hppc/CharHashSet;
            0    6     1  expectedElements  I
            2    5     2          prevKeys  [C
    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.CharHashSet this
         0: .line 377
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: com.carrotsearch.hppc.CharHashSet
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/carrotsearch/hppc/CharHashSet;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // com.carrotsearch.hppc.CharHashSet this
         0: .line 385
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         4: .line 387
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 3 /* slot */
        start local 3 // int slot
         5: goto 10
         6: .line 389
      StackMap locals: int char[] int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            caload
            dup
            istore 4 /* existing */
        start local 4 // char existing
         7: ifeq 9
         8: .line 390
            iload 1 /* h */
            iload 4 /* existing */
            invokestatic com.carrotsearch.hppc.BitMixer.mix:(C)I
            iadd
            istore 1 /* h */
        end local 4 // char 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 // char[] keys
        end local 1 // int h
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            3   12     1         h  I
            4   12     2      keys  [C
            5   11     3      slot  I
            7    9     4  existing  C

  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.CharHashSet 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.CharSet
            invokevirtual com.carrotsearch.hppc.CharHashSet.sameKeys:(Lcom/carrotsearch/hppc/CharSet;)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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/CharHashSet;
            0    5     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  private boolean sameKeys(com.carrotsearch.hppc.CharSet);
    descriptor: (Lcom/carrotsearch/hppc/CharSet;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // com.carrotsearch.hppc.CharSet other
         0: .line 410
            aload 1 /* other */
            invokeinterface com.carrotsearch.hppc.CharSet.size:()I
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.CharHashSet.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.CharSet.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: com.carrotsearch.hppc.CharHashSet com.carrotsearch.hppc.CharSet top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.cursors.CharCursor
            astore 2 /* c */
        start local 2 // com.carrotsearch.hppc.cursors.CharCursor c
         4: .line 415
            aload 0 /* this */
            aload 2 /* c */
            getfield com.carrotsearch.hppc.cursors.CharCursor.value:C
            invokevirtual com.carrotsearch.hppc.CharHashSet.contains:(C)Z
            ifne 6
         5: .line 416
            iconst_0
            ireturn
        end local 2 // com.carrotsearch.hppc.cursors.CharCursor 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.CharSet other
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/carrotsearch/hppc/CharHashSet;
            0    8     1  other  Lcom/carrotsearch/hppc/CharSet;
            4    6     2      c  Lcom/carrotsearch/hppc/cursors/CharCursor;
    MethodParameters:
       Name  Flags
      other  

  public com.carrotsearch.hppc.CharHashSet clone();
    descriptor: ()Lcom/carrotsearch/hppc/CharHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.carrotsearch.hppc.CharHashSet this
         0: .line 430
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.carrotsearch.hppc.CharHashSet
            astore 1 /* cloned */
        start local 1 // com.carrotsearch.hppc.CharHashSet cloned
         1: .line 431
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield com.carrotsearch.hppc.CharHashSet.keys:[C
         2: .line 432
            aload 1 /* cloned */
            aload 1 /* cloned */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            putfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
         3: .line 433
            aload 1 /* cloned */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            invokeinterface com.carrotsearch.hppc.HashOrderMixingStrategy.clone:()Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
            putfield com.carrotsearch.hppc.CharHashSet.orderMixer:Lcom/carrotsearch/hppc/HashOrderMixingStrategy;
         4: .line 434
            aload 1 /* cloned */
         5: areturn
        end local 1 // com.carrotsearch.hppc.CharHashSet 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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/carrotsearch/hppc/CharHashSet;
            1    6     1  cloned  Lcom/carrotsearch/hppc/CharHashSet;
            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.CharCursor> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.CharHashSet this
         0: .line 445
            new com.carrotsearch.hppc.CharHashSet$EntryIterator
            dup
            aload 0 /* this */
            invokespecial com.carrotsearch.hppc.CharHashSet$EntryIterator.<init>:(Lcom/carrotsearch/hppc/CharHashSet;)V
            areturn
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/CharHashSet;
    Signature: ()Ljava/util/Iterator<Lcom/carrotsearch/hppc/cursors/CharCursor;>;

  public <T extends com.carrotsearch.hppc.procedures.CharProcedure> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/procedures/CharProcedure;)Lcom/carrotsearch/hppc/procedures/CharProcedure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // com.carrotsearch.hppc.procedures.CharProcedure procedure
         0: .line 489
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 2
         1: .line 490
            aload 1 /* procedure */
            iconst_0
            invokeinterface com.carrotsearch.hppc.procedures.CharProcedure.apply:(C)V
         2: .line 493
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         3: .line 494
            iconst_0
            istore 3 /* slot */
        start local 3 // int slot
         4: aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 4 /* max */
        start local 4 // int max
         5: goto 10
         6: .line 496
      StackMap locals: char[] int int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            caload
            dup
            istore 5 /* existing */
        start local 5 // char existing
         7: ifeq 9
         8: .line 497
            aload 1 /* procedure */
            iload 5 /* existing */
            invokeinterface com.carrotsearch.hppc.procedures.CharProcedure.apply:(C)V
        end local 5 // char 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 // char[] keys
        end local 1 // com.carrotsearch.hppc.procedures.CharProcedure procedure
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lcom/carrotsearch/hppc/CharHashSet;
            0   12     1  procedure  TT;
            3   12     2       keys  [C
            4   11     3       slot  I
            5   11     4        max  I
            7    9     5   existing  C
    Signature: <T::Lcom/carrotsearch/hppc/procedures/CharProcedure;>(TT;)TT;
    MethodParameters:
           Name  Flags
      procedure  

  public <T extends com.carrotsearch.hppc.predicates.CharPredicate> T forEach();
    descriptor: (Lcom/carrotsearch/hppc/predicates/CharPredicate;)Lcom/carrotsearch/hppc/predicates/CharPredicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // com.carrotsearch.hppc.predicates.CharPredicate predicate
         0: .line 509
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 3
         1: .line 510
            aload 1 /* predicate */
            iconst_0
            invokeinterface com.carrotsearch.hppc.predicates.CharPredicate.apply:(C)Z
            ifne 3
         2: .line 511
            aload 1 /* predicate */
            areturn
         3: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         4: .line 516
            iconst_0
            istore 3 /* slot */
        start local 3 // int slot
         5: aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 4 /* max */
        start local 4 // int max
         6: goto 12
         7: .line 518
      StackMap locals: char[] int int
      StackMap stack:
            aload 2 /* keys */
            iload 3 /* slot */
            caload
            dup
            istore 5 /* existing */
        start local 5 // char existing
         8: ifeq 11
         9: .line 519
            aload 1 /* predicate */
            iload 5 /* existing */
            invokeinterface com.carrotsearch.hppc.predicates.CharPredicate.apply:(C)Z
            ifne 11
        10: .line 520
            goto 13
        end local 5 // char 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 // char[] keys
        end local 1 // com.carrotsearch.hppc.predicates.CharPredicate predicate
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/carrotsearch/hppc/CharHashSet;
            0   14     1  predicate  TT;
            4   14     2       keys  [C
            5   13     3       slot  I
            6   13     4        max  I
            8   11     5   existing  C
    Signature: <T::Lcom/carrotsearch/hppc/predicates/CharPredicate;>(TT;)TT;
    MethodParameters:
           Name  Flags
      predicate  

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

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

  public int indexOf(char);
    descriptor: (C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // char key
         0: .line 578
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 2 /* mask */
        start local 2 // int mask
         1: .line 579
            iload 1 /* key */
            ifne 5
         2: .line 580
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.hasEmptyKey:Z
            ifeq 3
            iload 2 /* mask */
            iconst_1
            iadd
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iload 2 /* 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.CharHashSet.keys:[C
            astore 3 /* keys */
        start local 3 // char[] keys
         6: .line 583
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual com.carrotsearch.hppc.CharHashSet.hashKey:(C)I
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        start local 4 // int slot
         7: .line 586
            goto 11
        start local 5 // char existing
         8: .line 587
      StackMap locals: char[] int int
      StackMap stack:
            iload 5 /* existing */
            iload 1 /* key */
            if_icmpne 10
         9: .line 588
            iload 4 /* slot */
            ireturn
        10: .line 590
      StackMap locals:
      StackMap stack:
            iload 4 /* slot */
            iconst_1
            iadd
            iload 2 /* mask */
            iand
            istore 4 /* slot */
        end local 5 // char existing
        11: .line 586
      StackMap locals:
      StackMap stack:
            aload 3 /* keys */
            iload 4 /* slot */
            caload
            dup
            istore 5 /* existing */
        start local 5 // char existing
        12: ifne 8
        13: .line 593
            iload 4 /* slot */
            iconst_m1
            ixor
            ireturn
        end local 5 // char existing
        end local 4 // int slot
        end local 3 // char[] keys
        end local 2 // int mask
        end local 1 // char key
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            0   14     1       key  C
            1   14     2      mask  I
            6   14     3      keys  [C
            7   14     4      slot  I
            8   11     5  existing  C
           12   14     5  existing  C
    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.CharHashSet this
        start local 1 // int index
         0: .line 606
            getstatic com.carrotsearch.hppc.CharHashSet.$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.CharHashSet.mask:I
            if_icmple 4
         2: .line 608
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/carrotsearch/hppc/CharHashSet;
            0    6     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public char indexGet(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // int index
         0: .line 625
            getstatic com.carrotsearch.hppc.CharHashSet.$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.CharHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            if_icmple 4
         2: .line 627
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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.CharHashSet.keys:[C
            iload 1 /* index */
            caload
            ireturn
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/carrotsearch/hppc/CharHashSet;
            0    5     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public char indexReplace(int, char);
    descriptor: (IC)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // int index
        start local 2 // char equivalentKey
         0: .line 646
            getstatic com.carrotsearch.hppc.CharHashSet.$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.CharHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            if_icmple 4
         2: .line 648
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iconst_1
            iadd
            if_icmpne 3
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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.CharHashSet.$assertionsDisabled:Z
            ifne 5
            iload 2 /* equivalentKey */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* index */
            caload
            if_icmpeq 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.CharHashSet.keys:[C
            iload 1 /* index */
            caload
            istore 3 /* previousValue */
        start local 3 // char previousValue
         6: .line 652
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* index */
            iload 2 /* equivalentKey */
            castore
         7: .line 653
            iload 3 /* previousValue */
            ireturn
        end local 3 // char previousValue
        end local 2 // char equivalentKey
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lcom/carrotsearch/hppc/CharHashSet;
            0    8     1          index  I
            0    8     2  equivalentKey  C
            6    8     3  previousValue  C
    MethodParameters:
               Name  Flags
      index          
      equivalentKey  

  public void indexInsert(int, char);
    descriptor: (IC)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // int index
        start local 2 // char key
         0: .line 668
            getstatic com.carrotsearch.hppc.CharHashSet.$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
            iload 2 /* key */
            ifne 7
         3: .line 672
            getstatic com.carrotsearch.hppc.CharHashSet.$assertionsDisabled:Z
            ifne 4
            iload 1 /* index */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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.CharHashSet.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* index */
            caload
            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.CharHashSet.hasEmptyKey:Z
         6: .line 675
            goto 13
         7: .line 676
      StackMap locals:
      StackMap stack:
            getstatic com.carrotsearch.hppc.CharHashSet.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* index */
            caload
            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.CharHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.resizeAt:I
            if_icmpne 11
         9: .line 679
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* key */
            invokevirtual com.carrotsearch.hppc.CharHashSet.allocateThenInsertThenRehash:(IC)V
        10: .line 680
            goto 12
        11: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* index */
            iload 2 /* key */
            castore
        12: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            iconst_1
            iadd
            putfield com.carrotsearch.hppc.CharHashSet.assigned:I
        13: .line 686
      StackMap locals:
      StackMap stack:
            return
        end local 2 // char key
        end local 1 // int index
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lcom/carrotsearch/hppc/CharHashSet;
            0   14     1  index  I
            0   14     2    key  C
    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.CharHashSet this
        start local 1 // int characters
         0: .line 690
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iload 1 /* characters */
            invokestatic com.carrotsearch.hppc.CharBufferVisualizer.visualizeKeyDistribution:([CII)Ljava/lang/String;
            areturn
        end local 1 // int characters
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/carrotsearch/hppc/CharHashSet;
            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.CharHashSet 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.CharHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/carrotsearch/hppc/CharHashSet;
            0    2     1  loadFactor  D
    MethodParameters:
            Name  Flags
      loadFactor  

  protected void rehash(char[]);
    descriptor: ([C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // char[] fromKeys
         0: .line 706
            getstatic com.carrotsearch.hppc.CharHashSet.$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.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         2: .line 710
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            istore 3 /* mask */
        start local 3 // int mask
         3: .line 712
            aload 1 /* fromKeys */
            arraylength
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         4: goto 12
         5: .line 713
      StackMap locals: com.carrotsearch.hppc.CharHashSet char[] char[] int top int
      StackMap stack:
            aload 1 /* fromKeys */
            iload 5 /* i */
            caload
            dup
            istore 4 /* existing */
        start local 4 // char existing
         6: ifeq 12
         7: .line 714
            aload 0 /* this */
            iload 4 /* existing */
            invokevirtual com.carrotsearch.hppc.CharHashSet.hashKey:(C)I
            iload 3 /* mask */
            iand
            istore 6 /* slot */
        start local 6 // int slot
         8: .line 715
            goto 10
         9: .line 716
      StackMap locals: com.carrotsearch.hppc.CharHashSet char[] char[] int int int int
      StackMap stack:
            iload 6 /* slot */
            iconst_1
            iadd
            iload 3 /* mask */
            iand
            istore 6 /* slot */
        10: .line 715
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 6 /* slot */
            caload
            ifne 9
        11: .line 718
            aload 2 /* keys */
            iload 6 /* slot */
            iload 4 /* existing */
            castore
        end local 6 // int slot
        end local 4 // char existing
        12: .line 712
      StackMap locals: com.carrotsearch.hppc.CharHashSet char[] char[] int top int
      StackMap stack:
            iinc 5 /* i */ -1
            iload 5 /* i */
            ifge 5
        end local 5 // int i
        13: .line 721
            return
        end local 3 // int mask
        end local 2 // char[] keys
        end local 1 // char[] fromKeys
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/carrotsearch/hppc/CharHashSet;
            0   14     1  fromKeys  [C
            2   14     2      keys  [C
            3   14     3      mask  I
            6   12     4  existing  C
            4   13     5         i  I
            8   12     6      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.CharHashSet this
        start local 1 // int arraySize
         0: .line 728
            getstatic com.carrotsearch.hppc.CharHashSet.$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.CharHashSet.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.CharHashSet.keys:[C
            astore 3 /* prevKeys */
        start local 3 // char[] 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 5
            putfield com.carrotsearch.hppc.CharHashSet.keys:[C
        end local 4 // int emptyElementSlot
         5: .line 738
            goto 16
      StackMap locals: com.carrotsearch.hppc.CharHashSet int int char[]
      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.CharHashSet.keys:[C
         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.CharHashSet.keys:[C
            ifnonnull 12
            iconst_0
            goto 13
      StackMap locals: com.carrotsearch.hppc.CharHashSet int int char[] 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.CharHashSet.size:()I
      StackMap locals: com.carrotsearch.hppc.CharHashSet int int char[] 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.CharHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.expandAtCount:(ID)I
            putfield com.carrotsearch.hppc.CharHashSet.resizeAt:I
        17: .line 748
            aload 0 /* this */
            iload 2 /* newKeyMixer */
            putfield com.carrotsearch.hppc.CharHashSet.keyMixer:I
        18: .line 749
            aload 0 /* this */
            iload 1 /* arraySize */
            iconst_1
            isub
            putfield com.carrotsearch.hppc.CharHashSet.mask:I
        19: .line 750
            return
        end local 3 // char[] prevKeys
        end local 2 // int newKeyMixer
        end local 1 // int arraySize
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   20     0              this  Lcom/carrotsearch/hppc/CharHashSet;
            0   20     1         arraySize  I
            2   20     2       newKeyMixer  I
            3   20     3          prevKeys  [C
            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, char);
    descriptor: (IC)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // int slot
        start local 2 // char pendingKey
         0: .line 762
            getstatic com.carrotsearch.hppc.CharHashSet.$assertionsDisabled:Z
            ifne 4
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.resizeAt:I
            if_icmpne 3
         1: .line 763
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            iload 1 /* slot */
            caload
            ifne 3
         2: .line 764
            iload 2 /* pendingKey */
            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.CharHashSet.keys:[C
            astore 3 /* prevKeys */
        start local 3 // char[] prevKeys
         5: .line 768
            aload 0 /* this */
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.mask:I
            iconst_1
            iadd
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.CharHashSet.size:()I
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.loadFactor:D
            invokestatic com.carrotsearch.hppc.HashContainers.nextBufferSize:(IID)I
            invokevirtual com.carrotsearch.hppc.CharHashSet.allocateBuffers:(I)V
         6: .line 769
            getstatic com.carrotsearch.hppc.CharHashSet.$assertionsDisabled:Z
            ifne 7
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            arraylength
            aload 3 /* prevKeys */
            arraylength
            if_icmpgt 7
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         7: .line 773
      StackMap locals: char[]
      StackMap stack:
            aload 3 /* prevKeys */
            iload 1 /* slot */
            iload 2 /* pendingKey */
            castore
         8: .line 776
            aload 0 /* this */
            aload 3 /* prevKeys */
            invokevirtual com.carrotsearch.hppc.CharHashSet.rehash:([C)V
         9: .line 777
            return
        end local 3 // char[] prevKeys
        end local 2 // char pendingKey
        end local 1 // int slot
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lcom/carrotsearch/hppc/CharHashSet;
            0   10     1        slot  I
            0   10     2  pendingKey  C
            5   10     3    prevKeys  [C
    MethodParameters:
            Name  Flags
      slot        
      pendingKey  

  protected void shiftConflictingKeys(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // com.carrotsearch.hppc.CharHashSet this
        start local 1 // int gapSlot
         0: .line 783
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.keys:[C
            astore 2 /* keys */
        start local 2 // char[] keys
         1: .line 784
            aload 0 /* this */
            getfield com.carrotsearch.hppc.CharHashSet.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: char[] 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 */
            caload
            istore 6 /* existing */
        start local 6 // char existing
         5: .line 791
            iload 6 /* existing */
            ifne 7
         6: .line 792
            goto 14
         7: .line 795
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* existing */
            invokevirtual com.carrotsearch.hppc.CharHashSet.hashKey:(C)I
            istore 7 /* idealSlot */
        start local 7 // int idealSlot
         8: .line 796
            iload 5 /* slot */
            iload 7 /* idealSlot */
            isub
            iload 3 /* mask */
            iand
            istore 8 /* shift */
        start local 8 // int shift
         9: .line 797
            iload 8 /* shift */
            iload 4 /* distance */
            if_icmplt 3
        10: .line 802
            aload 2 /* keys */
            iload 1 /* gapSlot */
            iload 6 /* existing */
            castore
        11: .line 803
            iload 5 /* slot */
            istore 1 /* gapSlot */
        12: .line 804
            iconst_0
            istore 4 /* distance */
        end local 8 // int shift
        end local 7 // int idealSlot
        end local 6 // char existing
        end local 5 // int slot
        13: .line 788
            goto 3
        14: .line 809
      StackMap locals:
      StackMap stack:
            aload 2 /* keys */
            iload 1 /* gapSlot */
            iconst_0
            castore
        15: .line 810
            aload 0 /* this */
            dup
            getfield com.carrotsearch.hppc.CharHashSet.assigned:I
            iconst_1
            isub
            putfield com.carrotsearch.hppc.CharHashSet.assigned:I
        16: .line 811
            return
        end local 4 // int distance
        end local 3 // int mask
        end local 2 // char[] keys
        end local 1 // int gapSlot
        end local 0 // com.carrotsearch.hppc.CharHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lcom/carrotsearch/hppc/CharHashSet;
            0   17     1    gapSlot  I
            1   17     2       keys  [C
            2   17     3       mask  I
            3   17     4   distance  I
            4   13     5       slot  I
            5   13     6   existing  C
            8   13     7  idealSlot  I
            9   13     8      shift  I
    MethodParameters:
         Name  Flags
      gapSlot  

  public int retainAll(com.carrotsearch.hppc.predicates.CharPredicate);
    descriptor: (Lcom/carrotsearch/hppc/predicates/CharPredicate;)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.AbstractCharCollection.retainAll:(Lcom/carrotsearch/hppc/predicates/CharPredicate;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int retainAll(com.carrotsearch.hppc.CharLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/CharLookupContainer;)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.AbstractCharCollection.retainAll:(Lcom/carrotsearch/hppc/CharLookupContainer;)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.AbstractCharCollection.toString:()Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int removeAll(com.carrotsearch.hppc.CharLookupContainer);
    descriptor: (Lcom/carrotsearch/hppc/CharLookupContainer;)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.AbstractCharCollection.removeAll:(Lcom/carrotsearch/hppc/CharLookupContainer;)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.CharHashSet.clone:()Lcom/carrotsearch/hppc/CharHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "CharHashSet.java"
NestMembers:
  com.carrotsearch.hppc.CharHashSet$EntryIterator
InnerClasses:
  protected final EntryIterator = com.carrotsearch.hppc.CharHashSet$EntryIterator of com.carrotsearch.hppc.CharHashSet