final class org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet extends org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableShortSet implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet
  super_class: org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableShortSet
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final short[] table;
    descriptor: [S
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int occupied;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int zeroToThirtyOne;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int zeroToThirtyOneOccupied;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private void <init>(short[], int, int, int);
    descriptor: ([SIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short[] table
        start local 2 // int occupied
        start local 3 // int zeroToThirtyOne
        start local 4 // int zeroToThirtyOneOccupied
         0: .line 1138
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableShortSet.<init>:()V
         1: .line 1140
            aload 0 /* this */
            iload 2 /* occupied */
            iload 4 /* zeroToThirtyOneOccupied */
            iadd
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.checkOptimizedSize:(I)V
         2: .line 1141
            aload 0 /* this */
            iload 2 /* occupied */
            putfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.occupied:I
         3: .line 1142
            aload 0 /* this */
            iload 4 /* zeroToThirtyOneOccupied */
            putfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOneOccupied:I
         4: .line 1143
            aload 0 /* this */
            iload 3 /* zeroToThirtyOne */
            putfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
         5: .line 1144
            aload 0 /* this */
            aload 1 /* table */
            putfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
         6: .line 1145
            return
        end local 4 // int zeroToThirtyOneOccupied
        end local 3 // int zeroToThirtyOne
        end local 2 // int occupied
        end local 1 // short[] table
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    7     0                     this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    7     1                    table  [S
            0    7     2                 occupied  I
            0    7     3          zeroToThirtyOne  I
            0    7     4  zeroToThirtyOneOccupied  I
    MethodParameters:
                         Name  Flags
      table                    
      occupied                 
      zeroToThirtyOne          
      zeroToThirtyOneOccupied  

  private void checkOptimizedSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // int length
         0: .line 1149
            iload 1 /* length */
            iconst_1
            if_icmpgt 2
         1: .line 1151
            new java.lang.IllegalArgumentException
            dup
            ldc "Use ShortSets.immutable.with() to instantiate an optimized collection"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1153
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public static org.eclipse.collections.api.set.primitive.ImmutableShortSet newSetWith(short[]);
    descriptor: ([S)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // short[] elements
         0: .line 1157
            aload 0 /* elements */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.newSetWith:([S)Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
        end local 0 // short[] elements
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  elements  [S
    MethodParameters:
          Name  Flags
      elements  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1163
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 1164
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         2: .line 1165
            goto 6
         3: .line 1167
      StackMap locals: int int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 3 /* value */
        start local 3 // short value
         4: .line 1168
            iload 1 /* result */
            iload 3 /* value */
            iadd
            istore 1 /* result */
         5: .line 1169
            iload 2 /* zeroToThirtyOne */
            iconst_1
            iload 3 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // short value
         6: .line 1165
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 3
         7: .line 1171
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            ifnull 14
         8: .line 1173
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 13
        10: .line 1175
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 3 /* i */
            saload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 12
        11: .line 1177
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 3 /* i */
            saload
            iadd
            istore 1 /* result */
        12: .line 1173
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            if_icmplt 10
        end local 3 // int i
        14: .line 1181
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            1   15     1           result  I
            2   15     2  zeroToThirtyOne  I
            4    6     3            value  S
            9   14     3                i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1187
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.occupied:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOneOccupied:I
            iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=11, args_size=5
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 1195
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 1197
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         2: .line 1198
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 6 /* zeroToThirtyOne */
        start local 6 // int zeroToThirtyOne
         3: .line 1199
            goto 10
         4: .line 1201
      StackMap locals: int int
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 7 /* value */
        start local 7 // short value
         5: .line 1202
            iload 5 /* count */
            ifle 7
         6: .line 1204
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         7: .line 1206
      StackMap locals: int
      StackMap stack:
            iinc 5 /* count */ 1
         8: .line 1207
            aload 1 /* appendable */
            iload 7 /* value */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 1208
            iload 6 /* zeroToThirtyOne */
            iconst_1
            iload 7 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 6 /* zeroToThirtyOne */
        end local 7 // short value
        10: .line 1199
      StackMap locals:
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            ifne 4
        11: .line 1211
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 10
            arraylength
            istore 9
            iconst_0
            istore 8
            goto 19
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top int int short[]
      StackMap stack:
        12: aload 10
            iload 8
            saload
            istore 7 /* value */
        start local 7 // short value
        13: .line 1213
            iload 7 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 18
        14: .line 1215
            iload 5 /* count */
            ifle 16
        15: .line 1217
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        16: .line 1219
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int int int int short[]
      StackMap stack:
            iinc 5 /* count */ 1
        17: .line 1220
            aload 1 /* appendable */
            iload 7 /* value */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 7 // short value
        18: .line 1211
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top int int short[]
      StackMap stack:
            iinc 8 1
      StackMap locals:
      StackMap stack:
        19: iload 8
            iload 9
            if_icmplt 12
        20: .line 1223
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 6 // int zeroToThirtyOne
        end local 5 // int count
        21: .line 1224
            goto 24
        22: .line 1225
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        23: .line 1227
            new java.lang.RuntimeException
            dup
            aload 5 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        24: .line 1229
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   25     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   25     1       appendable  Ljava/lang/Appendable;
            0   25     2            start  Ljava/lang/String;
            0   25     3        separator  Ljava/lang/String;
            0   25     4              end  Ljava/lang/String;
            2   21     5            count  I
            3   21     6  zeroToThirtyOne  I
            5   10     7            value  S
           13   18     7            value  S
           23   24     5                e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    21      22  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public org.eclipse.collections.api.iterator.ShortIterator shortIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/ShortIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1234
            new org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet$InternalShortIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet$InternalShortIterator.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;

  public short[] toArray();
    descriptor: ()[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1240
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            newarray 9
            astore 1 /* array */
        start local 1 // short[] array
         1: .line 1242
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         2: .line 1243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         3: .line 1244
            goto 8
         4: .line 1246
      StackMap locals: short[] int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 4 /* value */
        start local 4 // short value
         5: .line 1247
            aload 1 /* array */
            iload 2 /* j */
            iload 4 /* value */
            sastore
         6: .line 1248
            iinc 2 /* j */ 1
         7: .line 1249
            iload 3 /* zeroToThirtyOne */
            iconst_1
            iload 4 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // short value
         8: .line 1244
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 4
         9: .line 1252
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 15
        11: .line 1254
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 4 /* i */
            saload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 14
        12: .line 1256
            aload 1 /* array */
            iload 2 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 4 /* i */
            saload
            sastore
        13: .line 1257
            iinc 2 /* j */ 1
        14: .line 1252
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            if_icmpge 16
            iload 2 /* j */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            if_icmplt 11
        end local 4 // int i
        16: .line 1260
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int j
        end local 1 // short[] array
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   17     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            1   17     1            array  [S
            2   17     2                j  I
            3   17     3  zeroToThirtyOne  I
            5    8     4            value  S
           10   16     4                i  I

  public short[] toArray(short[]);
    descriptor: ([S)[S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short[] array
         0: .line 1266
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            if_icmpge 2
         1: .line 1268
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            newarray 9
            astore 1 /* array */
         2: .line 1271
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         3: .line 1272
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         4: .line 1273
            goto 9
         5: .line 1275
      StackMap locals: int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 4 /* value */
        start local 4 // short value
         6: .line 1276
            aload 1 /* array */
            iload 2 /* j */
            iload 4 /* value */
            sastore
         7: .line 1277
            iinc 2 /* j */ 1
         8: .line 1278
            iload 3 /* zeroToThirtyOne */
            iconst_1
            iload 4 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // short value
         9: .line 1273
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 5
        10: .line 1281
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        11: goto 16
        12: .line 1283
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 4 /* i */
            saload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 15
        13: .line 1285
            aload 1 /* array */
            iload 2 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 4 /* i */
            saload
            sastore
        14: .line 1286
            iinc 2 /* j */ 1
        15: .line 1281
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            if_icmpge 17
            iload 2 /* j */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            if_icmplt 12
        end local 4 // int i
        17: .line 1289
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int j
        end local 1 // short[] array
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   18     1            array  [S
            3   18     2                j  I
            4   18     3  zeroToThirtyOne  I
            6    9     4            value  S
           11   17     4                i  I
    MethodParameters:
       Name  Flags
      array  

  public boolean contains(short);
    descriptor: (S)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short value
         0: .line 1295
            iload 1 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isBetweenZeroAndThirtyOne:(S)Z
            ifeq 4
         1: .line 1297
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 2 /* temp */
        start local 2 // int temp
         2: .line 1298
            iload 2 /* temp */
            iload 1 /* value */
            iushr
            iconst_1
            iand
            ifeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // int temp
         4: .line 1300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.probe:(S)I
            saload
            iload 1 /* value */
            if_icmpne 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // short value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    6     1  value  S
            2    4     2   temp  I
    MethodParameters:
       Name  Flags
      value  

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.ShortProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
         0: .line 1306
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.each:(Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
         1: .line 1307
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.primitive.ShortProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
         0: .line 1312
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1313
            goto 5
         2: .line 1315
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 3 /* value */
        start local 3 // short value
         3: .line 1316
            aload 1 /* procedure */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ShortProcedure.value:(S)V
         4: .line 1317
            iload 2 /* zeroToThirtyOne */
            iconst_1
            iload 3 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // short value
         5: .line 1313
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         6: .line 1320
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 11
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet org.eclipse.collections.api.block.procedure.primitive.ShortProcedure int top int int short[]
      StackMap stack:
         7: aload 6
            iload 4
            saload
            istore 3 /* value */
        start local 3 // short value
         8: .line 1322
            iload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 10
         9: .line 1324
            aload 1 /* procedure */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ShortProcedure.value:(S)V
        end local 3 // short value
        10: .line 1320
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        11: iload 4
            iload 5
            if_icmplt 7
        12: .line 1327
            return
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ShortProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   13     1        procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ShortProcedure;
            1   13     2  zeroToThirtyOne  I
            3    5     3            value  S
            8   10     3            value  S
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.set.primitive.ImmutableShortSet select(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1332
            aload 0 /* this */
            aload 1 /* predicate */
            new org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.<init>:()V
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            checkcast org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.primitive.ImmutableShortSet reject(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1338
            aload 0 /* this */
            aload 1 /* predicate */
            new org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.<init>:()V
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            checkcast org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.set.ImmutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction function
         0: .line 1344
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.size:()I
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.MutableSet
            astore 2 /* set */
        start local 2 // org.eclipse.collections.api.set.MutableSet set
         1: .line 1345
            aload 2 /* set */
            invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 2 // org.eclipse.collections.api.set.MutableSet set
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction function
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction<+TV;>;
            1    2     2       set  Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public short detectIfNone(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate, short);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;S)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        start local 2 // short ifNone
         0: .line 1351
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         1: .line 1352
            goto 6
         2: .line 1354
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 4 /* value */
        start local 4 // short value
         3: .line 1355
            aload 1 /* predicate */
            iload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 5
         4: .line 1357
            iload 4 /* value */
            ireturn
         5: .line 1359
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            iload 4 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // short value
         6: .line 1352
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 2
         7: .line 1362
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet org.eclipse.collections.api.block.predicate.primitive.ShortPredicate int int top int int short[]
      StackMap stack:
         8: aload 7
            iload 5
            saload
            istore 4 /* value */
        start local 4 // short value
         9: .line 1364
            iload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 12
        10: .line 1366
            aload 1 /* predicate */
            iload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 12
        11: .line 1368
            iload 4 /* value */
            ireturn
        end local 4 // short value
        12: .line 1362
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 8
        14: .line 1372
            iload 2 /* ifNone */
            ireturn
        end local 3 // int zeroToThirtyOne
        end local 2 // short ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
            0   15     2           ifNone  S
            1   15     3  zeroToThirtyOne  I
            3    6     4            value  S
            9   12     4            value  S
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int count(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1378
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 1379
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         2: .line 1380
            goto 7
         3: .line 1382
      StackMap locals: int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 4 /* value */
        start local 4 // short value
         4: .line 1383
            aload 1 /* predicate */
            iload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 6
         5: .line 1385
            iinc 2 /* count */ 1
         6: .line 1387
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            iload 4 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // short value
         7: .line 1380
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 3
         8: .line 1390
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 14
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet org.eclipse.collections.api.block.predicate.primitive.ShortPredicate int int top int int short[]
      StackMap stack:
         9: aload 7
            iload 5
            saload
            istore 4 /* value */
        start local 4 // short value
        10: .line 1392
            iload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 13
        11: .line 1394
            aload 1 /* predicate */
            iload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 13
        12: .line 1396
            iinc 2 /* count */ 1
        end local 4 // short value
        13: .line 1390
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        14: iload 5
            iload 6
            if_icmplt 9
        15: .line 1400
            iload 2 /* count */
            ireturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   16     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
            1   16     2            count  I
            2   16     3  zeroToThirtyOne  I
            4    7     4            value  S
           10   13     4            value  S
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1406
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1407
            goto 6
         2: .line 1409
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 3 /* value */
        start local 3 // short value
         3: .line 1410
            aload 1 /* predicate */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 5
         4: .line 1412
            iconst_1
            ireturn
         5: .line 1414
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            iload 3 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // short value
         6: .line 1407
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 1417
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet org.eclipse.collections.api.block.predicate.primitive.ShortPredicate int top int int short[]
      StackMap stack:
         8: aload 6
            iload 4
            saload
            istore 3 /* value */
        start local 3 // short value
         9: .line 1419
            iload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 12
        10: .line 1421
            aload 1 /* predicate */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifeq 12
        11: .line 1423
            iconst_1
            ireturn
        end local 3 // short value
        12: .line 1417
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        13: iload 4
            iload 5
            if_icmplt 8
        14: .line 1427
            iconst_0
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  S
            9   12     3            value  S
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1433
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1434
            goto 6
         2: .line 1436
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 3 /* value */
        start local 3 // short value
         3: .line 1437
            aload 1 /* predicate */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifne 5
         4: .line 1439
            iconst_0
            ireturn
         5: .line 1441
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            iload 3 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // short value
         6: .line 1434
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 1444
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet org.eclipse.collections.api.block.predicate.primitive.ShortPredicate int top int int short[]
      StackMap stack:
         8: aload 6
            iload 4
            saload
            istore 3 /* value */
        start local 3 // short value
         9: .line 1446
            iload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 12
        10: .line 1448
            aload 1 /* predicate */
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.ShortPredicate.accept:(S)Z
            ifne 12
        11: .line 1450
            iconst_0
            ireturn
        end local 3 // short value
        12: .line 1444
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        13: iload 4
            iload 5
            if_icmplt 8
        14: .line 1454
            iconst_1
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  S
            9   12     3            value  S
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
         0: .line 1460
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.ShortPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1466
            lconst_0
            lstore 1 /* result */
        start local 1 // long result
         1: .line 1468
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         2: .line 1469
            goto 6
         3: .line 1471
      StackMap locals: long int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 4 /* value */
        start local 4 // short value
         4: .line 1472
            lload 1 /* result */
            iload 4 /* value */
            i2l
            ladd
            lstore 1 /* result */
         5: .line 1473
            iload 3 /* zeroToThirtyOne */
            iconst_1
            iload 4 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // short value
         6: .line 1469
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 3
         7: .line 1476
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet long int top int int short[]
      StackMap stack:
         8: aload 7
            iload 5
            saload
            istore 4 /* value */
        start local 4 // short value
         9: .line 1478
            iload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 11
        10: .line 1480
            lload 1 /* result */
            iload 4 /* value */
            i2l
            ladd
            lstore 1 /* result */
        end local 4 // short value
        11: .line 1476
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        12: iload 5
            iload 6
            if_icmplt 8
        13: .line 1483
            lload 1 /* result */
            lreturn
        end local 3 // int zeroToThirtyOne
        end local 1 // long result
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            1   14     1           result  J
            2   14     3  zeroToThirtyOne  I
            4    6     4            value  S
            9   11     4            value  S

  public short max();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1489
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.isEmpty:()Z
            ifeq 2
         1: .line 1491
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1493
      StackMap locals:
      StackMap stack:
            bipush 31
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            i2s
            istore 1 /* max */
        start local 1 // short max
         3: .line 1494
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 2 /* isMaxSet */
        start local 2 // boolean isMaxSet
         6: .line 1496
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int top int int short[]
      StackMap stack:
         7: aload 6
            iload 4
            saload
            istore 3 /* value */
        start local 3 // short value
         8: .line 1498
            iload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 11
            iload 2 /* isMaxSet */
            ifeq 9
            iload 1 /* max */
            iload 3 /* value */
            if_icmpge 11
         9: .line 1500
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int int int int short[]
      StackMap stack:
            iload 3 /* value */
            istore 1 /* max */
        10: .line 1501
            iconst_1
            istore 2 /* isMaxSet */
        end local 3 // short value
        11: .line 1496
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int top int int short[]
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        12: iload 4
            iload 5
            if_icmplt 7
        13: .line 1504
            iload 1 /* max */
            ireturn
        end local 2 // boolean isMaxSet
        end local 1 // short max
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            3   14     1       max  S
            6   14     2  isMaxSet  Z
            8   11     3     value  S

  public short min();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1510
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.isEmpty:()Z
            ifeq 2
         1: .line 1512
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 1 /* min */
        start local 1 // short min
         3: .line 1515
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 2 /* isMinSet */
        start local 2 // boolean isMinSet
         6: .line 1517
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int top int int short[]
      StackMap stack:
         7: aload 6
            iload 4
            saload
            istore 3 /* value */
        start local 3 // short value
         8: .line 1519
            iload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 11
            iload 2 /* isMinSet */
            ifeq 9
            iload 3 /* value */
            iload 1 /* min */
            if_icmpge 11
         9: .line 1521
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int int int int short[]
      StackMap stack:
            iload 3 /* value */
            istore 1 /* min */
        10: .line 1522
            iconst_1
            istore 2 /* isMinSet */
        end local 3 // short value
        11: .line 1517
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet int int top int int short[]
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        12: iload 4
            iload 5
            if_icmplt 7
        13: .line 1525
            iload 1 /* min */
            ireturn
        end local 2 // boolean isMinSet
        end local 1 // short min
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            3   14     1       min  S
            6   14     2  isMinSet  Z
            8   11     3     value  S

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectShortToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction function
         0: .line 1531
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 1532
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.zeroToThirtyOne:I
            istore 4 /* zeroToThirtyOne */
        start local 4 // int zeroToThirtyOne
         2: .line 1533
            goto 6
         3: .line 1535
      StackMap locals: java.lang.Object int
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2s
            istore 5 /* value */
        start local 5 // short value
         4: .line 1536
            aload 2 /* function */
            aload 3 /* result */
            iload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction.valueOf:(Ljava/lang/Object;S)Ljava/lang/Object;
            astore 3 /* result */
         5: .line 1537
            iload 4 /* zeroToThirtyOne */
            iconst_1
            iload 5 /* value */
            ishl
            iconst_m1
            ixor
            iand
            istore 4 /* zeroToThirtyOne */
        end local 5 // short value
         6: .line 1533
      StackMap locals:
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            ifne 3
         7: .line 1540
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet java.lang.Object org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction java.lang.Object int top int int short[]
      StackMap stack:
         8: aload 8
            iload 6
            saload
            istore 5 /* value */
        start local 5 // short value
         9: .line 1542
            iload 5 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet.isNonSentinel:(S)Z
            ifeq 11
        10: .line 1544
            aload 2 /* function */
            aload 3 /* result */
            iload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction.valueOf:(Ljava/lang/Object;S)Ljava/lang/Object;
            astore 3 /* result */
        end local 5 // short value
        11: .line 1540
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 8
        13: .line 1547
            aload 3 /* result */
            areturn
        end local 4 // int zeroToThirtyOne
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectShortToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   14     1    injectedValue  TT;
            0   14     2         function  Lorg/eclipse/collections/api/block/function/primitive/ObjectShortToObjectFunction<-TT;+TT;>;
            1   14     3           result  TT;
            2   14     4  zeroToThirtyOne  I
            4    6     5            value  S
            9   11     5            value  S
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectShortToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
         0: .line 1552
            new org.eclipse.collections.impl.set.immutable.primitive.ImmutableShortSetSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.ImmutableShortSetSerializationProxy.<init>:(Lorg/eclipse/collections/api/set/primitive/ShortSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;

  int probe(short);
    descriptor: (S)I
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short element
         0: .line 1558
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.spreadAndMask:(S)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 1559
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 2 /* index */
            saload
            istore 3 /* valueAtIndex */
        start local 3 // short valueAtIndex
         2: .line 1561
            iload 3 /* valueAtIndex */
            iload 1 /* element */
            if_icmpeq 3
            iload 3 /* valueAtIndex */
            ifne 4
         3: .line 1563
      StackMap locals: int int
      StackMap stack:
            iload 2 /* index */
            ireturn
         4: .line 1566
      StackMap locals:
      StackMap stack:
            iload 3 /* valueAtIndex */
            iconst_1
            if_icmpne 5
            iload 2 /* index */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_m1
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* removedIndex */
        start local 4 // int removedIndex
         7: .line 1567
            iconst_1
            istore 5 /* i */
        start local 5 // int i
         8: goto 20
         9: .line 1569
      StackMap locals: int int
      StackMap stack:
            iload 2 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
        10: .line 1570
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 6 /* nextIndex */
            saload
            istore 3 /* valueAtIndex */
        11: .line 1571
            iload 3 /* valueAtIndex */
            iload 1 /* element */
            if_icmpne 13
        12: .line 1573
            iload 6 /* nextIndex */
            ireturn
        13: .line 1575
      StackMap locals: int
      StackMap stack:
            iload 3 /* valueAtIndex */
            ifne 17
        14: .line 1577
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 15
            iload 6 /* nextIndex */
            goto 16
      StackMap locals:
      StackMap stack:
        15: iload 4 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        16: ireturn
        17: .line 1579
      StackMap locals:
      StackMap stack:
            iload 3 /* valueAtIndex */
            iconst_1
            if_icmpne 19
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 1581
            iload 6 /* nextIndex */
            istore 4 /* removedIndex */
        end local 6 // int nextIndex
        19: .line 1567
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 5 /* i */
            bipush 16
            if_icmplt 9
        end local 5 // int i
        21: .line 1584
            aload 0 /* this */
            iload 1 /* element */
            iload 4 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.probeTwo:(SI)I
            ireturn
        end local 4 // int removedIndex
        end local 3 // short valueAtIndex
        end local 2 // int index
        end local 1 // short element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   22     1       element  S
            1   22     2         index  I
            2   22     3  valueAtIndex  S
            7   22     4  removedIndex  I
            8   21     5             i  I
           10   19     6     nextIndex  I
    MethodParameters:
         Name  Flags
      element  

  int probeTwo(short, int);
    descriptor: (SI)I
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short element
        start local 2 // int removedIndex
         0: .line 1589
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.spreadTwoAndMask:(S)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 1590
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 14
         3: .line 1592
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 4 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            iconst_1
            isub
            iand
            istore 5 /* nextIndex */
        start local 5 // int nextIndex
         4: .line 1593
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 5 /* nextIndex */
            saload
            istore 6 /* valueAtIndex */
        start local 6 // short valueAtIndex
         5: .line 1594
            iload 6 /* valueAtIndex */
            iload 1 /* element */
            if_icmpne 7
         6: .line 1596
            iload 5 /* nextIndex */
            ireturn
         7: .line 1598
      StackMap locals: int int
      StackMap stack:
            iload 6 /* valueAtIndex */
            ifne 11
         8: .line 1600
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 9
            iload 5 /* nextIndex */
            goto 10
      StackMap locals:
      StackMap stack:
         9: iload 2 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        10: ireturn
        11: .line 1602
      StackMap locals:
      StackMap stack:
            iload 6 /* valueAtIndex */
            iconst_1
            if_icmpne 13
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 1604
            iload 5 /* nextIndex */
            istore 2 /* removedIndex */
        end local 6 // short valueAtIndex
        end local 5 // int nextIndex
        13: .line 1590
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            bipush 16
            if_icmplt 3
        end local 4 // int i
        15: .line 1607
            aload 0 /* this */
            iload 1 /* element */
            iload 2 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.probeThree:(SI)I
            ireturn
        end local 3 // int index
        end local 2 // int removedIndex
        end local 1 // short element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   16     1       element  S
            0   16     2  removedIndex  I
            1   16     3         index  I
            2   15     4             i  I
            4   13     5     nextIndex  I
            5   13     6  valueAtIndex  S
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int probeThree(short, int);
    descriptor: (SI)I
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short element
        start local 2 // int removedIndex
         0: .line 1612
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.shortSpreadOne:(S)I
            invokestatic java.lang.Integer.reverse:(I)I
            istore 3 /* nextIndex */
        start local 3 // int nextIndex
         1: .line 1613
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.shortSpreadTwo:(S)I
            invokestatic java.lang.Integer.reverse:(I)I
            iconst_1
            ior
            istore 4 /* spreadTwo */
        start local 4 // int spreadTwo
         2: .line 1617
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* nextIndex */
            iload 4 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.mask:(I)I
            istore 3 /* nextIndex */
         3: .line 1618
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            iload 3 /* nextIndex */
            saload
            istore 5 /* valueAtIndex */
        start local 5 // short valueAtIndex
         4: .line 1619
            iload 5 /* valueAtIndex */
            iload 1 /* element */
            if_icmpne 6
         5: .line 1621
            iload 3 /* nextIndex */
            ireturn
         6: .line 1623
      StackMap locals: int
      StackMap stack:
            iload 5 /* valueAtIndex */
            ifne 10
         7: .line 1625
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 8
            iload 3 /* nextIndex */
            goto 9
      StackMap locals:
      StackMap stack:
         8: iload 2 /* removedIndex */
      StackMap locals:
      StackMap stack: int
         9: ireturn
        10: .line 1627
      StackMap locals:
      StackMap stack:
            iload 5 /* valueAtIndex */
            iconst_1
            if_icmpne 2
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 1629
            iload 3 /* nextIndex */
            istore 2 /* removedIndex */
        end local 5 // short valueAtIndex
        12: .line 1615
            goto 2
        end local 4 // int spreadTwo
        end local 3 // int nextIndex
        end local 2 // int removedIndex
        end local 1 // short element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0   13     1       element  S
            0   13     2  removedIndex  I
            1   13     3     nextIndex  I
            2   13     4     spreadTwo  I
            4   12     5  valueAtIndex  S
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int spreadAndMask(short);
    descriptor: (S)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short element
         0: .line 1637
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.shortSpreadOne:(S)I
            istore 2 /* code */
        start local 2 // int code
         1: .line 1638
            aload 0 /* this */
            iload 2 /* code */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.mask:(I)I
            ireturn
        end local 2 // int code
        end local 1 // short element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    2     1  element  S
            1    2     2     code  I
    MethodParameters:
         Name  Flags
      element  

  int spreadTwoAndMask(short);
    descriptor: (S)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // short element
         0: .line 1643
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.shortSpreadTwo:(S)I
            istore 2 /* code */
        start local 2 // int code
         1: .line 1644
            aload 0 /* this */
            iload 2 /* code */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.mask:(I)I
            ireturn
        end local 2 // int code
        end local 1 // short element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    2     1  element  S
            1    2     2     code  I
    MethodParameters:
         Name  Flags
      element  

  private int mask(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
        start local 1 // int spread
         0: .line 1649
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.table:[S
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/ShortHashSet$ImmutableShortHashSet;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  public org.eclipse.collections.api.ShortIterable select(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/ShortIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableShortCollection select(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableShortCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.ShortSet select(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ShortSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.ImmutableCollection collect(org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/collection/ImmutableCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable collect(org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/set/SetIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/ShortToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ShortIterable reject(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/ShortIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableShortCollection reject(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableShortCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.ShortSet reject(org.eclipse.collections.api.block.predicate.primitive.ShortPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ShortSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/ShortPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableShortSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ShortHashSet.java"
NestHost: org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
InnerClasses:
  private final ImmutableShortHashSet = org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet of org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet
  private InternalShortIterator = org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet$InternalShortIterator of org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet$ImmutableShortHashSet