final class org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet extends org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableLongSet 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.LongHashSet$ImmutableLongHashSet
  super_class: org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableLongSet
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final long[] table;
    descriptor: [J
    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>(long[], int, int, int);
    descriptor: ([JIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long[] table
        start local 2 // int occupied
        start local 3 // int zeroToThirtyOne
        start local 4 // int zeroToThirtyOneOccupied
         0: .line 1094
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableLongSet.<init>:()V
         1: .line 1096
            aload 0 /* this */
            iload 2 /* occupied */
            iload 4 /* zeroToThirtyOneOccupied */
            iadd
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.checkOptimizedSize:(I)V
         2: .line 1097
            aload 0 /* this */
            iload 2 /* occupied */
            putfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.occupied:I
         3: .line 1098
            aload 0 /* this */
            iload 4 /* zeroToThirtyOneOccupied */
            putfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOneOccupied:I
         4: .line 1099
            aload 0 /* this */
            iload 3 /* zeroToThirtyOne */
            putfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
         5: .line 1100
            aload 0 /* this */
            aload 1 /* table */
            putfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
         6: .line 1101
            return
        end local 4 // int zeroToThirtyOneOccupied
        end local 3 // int zeroToThirtyOne
        end local 2 // int occupied
        end local 1 // long[] table
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    7     0                     this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    7     1                    table  [J
            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.LongHashSet$ImmutableLongHashSet this
        start local 1 // int length
         0: .line 1105
            iload 1 /* length */
            iconst_1
            if_icmpgt 2
         1: .line 1107
            new java.lang.IllegalArgumentException
            dup
            ldc "Use LongSets.immutable.with() to instantiate an optimized collection"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1109
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      length  

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

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1119
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 1120
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         2: .line 1121
            goto 6
         3: .line 1123
      StackMap locals: int int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 3 /* value */
        start local 3 // long value
         4: .line 1124
            iload 1 /* result */
            lload 3 /* value */
            lload 3 /* value */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         5: .line 1125
            iload 2 /* zeroToThirtyOne */
            iconst_1
            lload 3 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // long value
         6: .line 1121
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 3
         7: .line 1127
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            ifnull 14
         8: .line 1129
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 13
        10: .line 1131
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 3 /* i */
            laload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 12
        11: .line 1133
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 3 /* i */
            laload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 3 /* i */
            laload
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
        12: .line 1129
      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.LongHashSet$ImmutableLongHashSet.table:[J
            arraylength
            if_icmplt 10
        end local 3 // int i
        14: .line 1137
      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.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            1   15     1           result  I
            2   15     2  zeroToThirtyOne  I
            4    6     3            value  J
            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.LongHashSet$ImmutableLongHashSet this
         0: .line 1143
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.occupied:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOneOccupied:I
            iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;

  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=4, locals=12, args_size=5
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet 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 1151
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 1153
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         2: .line 1154
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 6 /* zeroToThirtyOne */
        start local 6 // int zeroToThirtyOne
         3: .line 1155
            goto 10
         4: .line 1157
      StackMap locals: int int
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 7 /* value */
        start local 7 // long value
         5: .line 1158
            iload 5 /* count */
            ifle 7
         6: .line 1160
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         7: .line 1162
      StackMap locals: long
      StackMap stack:
            iinc 5 /* count */ 1
         8: .line 1163
            aload 1 /* appendable */
            lload 7 /* value */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 1164
            iload 6 /* zeroToThirtyOne */
            iconst_1
            lload 7 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 6 /* zeroToThirtyOne */
        end local 7 // long value
        10: .line 1155
      StackMap locals:
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            ifne 4
        11: .line 1167
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 11
            arraylength
            istore 10
            iconst_0
            istore 9
            goto 19
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top top int int long[]
      StackMap stack:
        12: aload 11
            iload 9
            laload
            lstore 7 /* value */
        start local 7 // long value
        13: .line 1169
            lload 7 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 18
        14: .line 1171
            iload 5 /* count */
            ifle 16
        15: .line 1173
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        16: .line 1175
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int long int int long[]
      StackMap stack:
            iinc 5 /* count */ 1
        17: .line 1176
            aload 1 /* appendable */
            lload 7 /* value */
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 7 // long value
        18: .line 1167
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top top int int long[]
      StackMap stack:
            iinc 9 1
      StackMap locals:
      StackMap stack:
        19: iload 9
            iload 10
            if_icmplt 12
        20: .line 1179
            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 1180
            goto 24
        22: .line 1181
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet 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 1183
            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 1185
      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.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   25     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            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  J
           13   18     7            value  J
           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.LongIterator longIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/LongIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1190
            new org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet$InternalLongIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet$InternalLongIterator.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;

  public long[] toArray();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1196
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.size:()I
            newarray 11
            astore 1 /* array */
        start local 1 // long[] array
         1: .line 1198
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         2: .line 1199
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         3: .line 1200
            goto 8
         4: .line 1202
      StackMap locals: long[] int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 4 /* value */
        start local 4 // long value
         5: .line 1203
            aload 1 /* array */
            iload 2 /* j */
            lload 4 /* value */
            lastore
         6: .line 1204
            iinc 2 /* j */ 1
         7: .line 1205
            iload 3 /* zeroToThirtyOne */
            iconst_1
            lload 4 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // long value
         8: .line 1200
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 4
         9: .line 1208
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 15
        11: .line 1210
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 4 /* i */
            laload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 14
        12: .line 1212
            aload 1 /* array */
            iload 2 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 4 /* i */
            laload
            lastore
        13: .line 1213
            iinc 2 /* j */ 1
        14: .line 1208
      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.LongHashSet$ImmutableLongHashSet.table:[J
            arraylength
            if_icmpge 16
            iload 2 /* j */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.size:()I
            if_icmplt 11
        end local 4 // int i
        16: .line 1216
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int j
        end local 1 // long[] array
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   17     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            1   17     1            array  [J
            2   17     2                j  I
            3   17     3  zeroToThirtyOne  I
            5    8     4            value  J
           10   16     4                i  I

  public boolean contains(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long value
         0: .line 1222
            lload 1 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isBetweenZeroAndThirtyOne:(J)Z
            ifeq 4
         1: .line 1224
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 3 /* temp */
        start local 3 // int temp
         2: .line 1225
            iload 3 /* temp */
            lload 1 /* value */
            l2i
            iushr
            iconst_1
            iand
            ifeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 3 // int temp
         4: .line 1227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            aload 0 /* this */
            lload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.probe:(J)I
            laload
            lload 1 /* value */
            lcmp
            ifne 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // long value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    6     1  value  J
            2    4     3   temp  I
    MethodParameters:
       Name  Flags
      value  

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

  public void each(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
         0: .line 1239
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1240
            goto 5
         2: .line 1242
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 3 /* value */
        start local 3 // long value
         3: .line 1243
            aload 1 /* procedure */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongProcedure.value:(J)V
         4: .line 1244
            iload 2 /* zeroToThirtyOne */
            iconst_1
            lload 3 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // long value
         5: .line 1240
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         6: .line 1247
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 11
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet org.eclipse.collections.api.block.procedure.primitive.LongProcedure int top top int int long[]
      StackMap stack:
         7: aload 7
            iload 5
            laload
            lstore 3 /* value */
        start local 3 // long value
         8: .line 1249
            lload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 10
         9: .line 1251
            aload 1 /* procedure */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongProcedure.value:(J)V
        end local 3 // long value
        10: .line 1247
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        11: iload 5
            iload 6
            if_icmplt 7
        12: .line 1254
            return
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   13     1        procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
            1   13     2  zeroToThirtyOne  I
            3    5     3            value  J
            8   10     3            value  J
    MethodParameters:
           Name  Flags
      procedure  

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

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

  public <V> org.eclipse.collections.api.set.ImmutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
         0: .line 1271
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.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.LongHashSet$ImmutableLongHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;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 1272
            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.LongToObjectFunction function
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    2     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;
            1    2     2       set  Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public long detectIfNone(org.eclipse.collections.api.block.predicate.primitive.LongPredicate, long);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        start local 2 // long ifNone
         0: .line 1278
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 4 /* zeroToThirtyOne */
        start local 4 // int zeroToThirtyOne
         1: .line 1279
            goto 6
         2: .line 1281
      StackMap locals: int
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 5 /* value */
        start local 5 // long value
         3: .line 1282
            aload 1 /* predicate */
            lload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 5
         4: .line 1284
            lload 5 /* value */
            lreturn
         5: .line 1286
      StackMap locals: long
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            iconst_1
            lload 5 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 4 /* zeroToThirtyOne */
        end local 5 // long value
         6: .line 1279
      StackMap locals:
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            ifne 2
         7: .line 1289
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet org.eclipse.collections.api.block.predicate.primitive.LongPredicate long int top top int int long[]
      StackMap stack:
         8: aload 9
            iload 7
            laload
            lstore 5 /* value */
        start local 5 // long value
         9: .line 1291
            lload 5 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 12
        10: .line 1293
            aload 1 /* predicate */
            lload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 12
        11: .line 1295
            lload 5 /* value */
            lreturn
        end local 5 // long value
        12: .line 1289
      StackMap locals:
      StackMap stack:
            iinc 7 1
      StackMap locals:
      StackMap stack:
        13: iload 7
            iload 8
            if_icmplt 8
        14: .line 1299
            lload 2 /* ifNone */
            lreturn
        end local 4 // int zeroToThirtyOne
        end local 2 // long ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            0   15     2           ifNone  J
            1   15     4  zeroToThirtyOne  I
            3    6     5            value  J
            9   12     5            value  J
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int count(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 1305
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 1306
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         2: .line 1307
            goto 7
         3: .line 1309
      StackMap locals: int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 4 /* value */
        start local 4 // long value
         4: .line 1310
            aload 1 /* predicate */
            lload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 6
         5: .line 1312
            iinc 2 /* count */ 1
         6: .line 1314
      StackMap locals: long
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            lload 4 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // long value
         7: .line 1307
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 3
         8: .line 1317
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 14
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet org.eclipse.collections.api.block.predicate.primitive.LongPredicate int int top top int int long[]
      StackMap stack:
         9: aload 8
            iload 6
            laload
            lstore 4 /* value */
        start local 4 // long value
        10: .line 1319
            lload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 13
        11: .line 1321
            aload 1 /* predicate */
            lload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 13
        12: .line 1323
            iinc 2 /* count */ 1
        end local 4 // long value
        13: .line 1317
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        14: iload 6
            iload 7
            if_icmplt 9
        15: .line 1327
            iload 2 /* count */
            ireturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   16     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   16     2            count  I
            2   16     3  zeroToThirtyOne  I
            4    7     4            value  J
           10   13     4            value  J
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 1333
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1334
            goto 6
         2: .line 1336
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 3 /* value */
        start local 3 // long value
         3: .line 1337
            aload 1 /* predicate */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 5
         4: .line 1339
            iconst_1
            ireturn
         5: .line 1341
      StackMap locals: long
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            lload 3 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // long value
         6: .line 1334
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 1344
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet org.eclipse.collections.api.block.predicate.primitive.LongPredicate int top top int int long[]
      StackMap stack:
         8: aload 7
            iload 5
            laload
            lstore 3 /* value */
        start local 3 // long value
         9: .line 1346
            lload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 12
        10: .line 1348
            aload 1 /* predicate */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 12
        11: .line 1350
            iconst_1
            ireturn
        end local 3 // long value
        12: .line 1344
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 8
        14: .line 1354
            iconst_0
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  J
            9   12     3            value  J
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 1360
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 1361
            goto 6
         2: .line 1363
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 3 /* value */
        start local 3 // long value
         3: .line 1364
            aload 1 /* predicate */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 5
         4: .line 1366
            iconst_0
            ireturn
         5: .line 1368
      StackMap locals: long
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            lload 3 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // long value
         6: .line 1361
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 1371
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet org.eclipse.collections.api.block.predicate.primitive.LongPredicate int top top int int long[]
      StackMap stack:
         8: aload 7
            iload 5
            laload
            lstore 3 /* value */
        start local 3 // long value
         9: .line 1373
            lload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 12
        10: .line 1375
            aload 1 /* predicate */
            lload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 12
        11: .line 1377
            iconst_0
            ireturn
        end local 3 // long value
        12: .line 1371
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 8
        14: .line 1381
            iconst_1
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  J
            9   12     3            value  J
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 1387
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)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.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
    MethodParameters:
           Name  Flags
      predicate  

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1393
            lconst_0
            lstore 1 /* result */
        start local 1 // long result
         1: .line 1395
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         2: .line 1396
            goto 6
         3: .line 1398
      StackMap locals: long int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 4 /* value */
        start local 4 // long value
         4: .line 1399
            lload 1 /* result */
            lload 4 /* value */
            ladd
            lstore 1 /* result */
         5: .line 1400
            iload 3 /* zeroToThirtyOne */
            iconst_1
            lload 4 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // long value
         6: .line 1396
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 3
         7: .line 1403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int top top int int long[]
      StackMap stack:
         8: aload 8
            iload 6
            laload
            lstore 4 /* value */
        start local 4 // long value
         9: .line 1405
            lload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 11
        10: .line 1407
            lload 1 /* result */
            lload 4 /* value */
            ladd
            lstore 1 /* result */
        end local 4 // long value
        11: .line 1403
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 8
        13: .line 1410
            lload 1 /* result */
            lreturn
        end local 3 // int zeroToThirtyOne
        end local 1 // long result
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            1   14     1           result  J
            2   14     3  zeroToThirtyOne  I
            4    6     4            value  J
            9   11     4            value  J

  public long max();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1416
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.isEmpty:()Z
            ifeq 2
         1: .line 1418
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1420
      StackMap locals:
      StackMap stack:
            bipush 31
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            i2l
            lstore 1 /* max */
        start local 1 // long max
         3: .line 1421
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: long
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* isMaxSet */
        start local 3 // boolean isMaxSet
         6: .line 1423
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int top top int int long[]
      StackMap stack:
         7: aload 8
            iload 6
            laload
            lstore 4 /* value */
        start local 4 // long value
         8: .line 1425
            lload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 11
            iload 3 /* isMaxSet */
            ifeq 9
            lload 1 /* max */
            lload 4 /* value */
            lcmp
            ifge 11
         9: .line 1427
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int long int int long[]
      StackMap stack:
            lload 4 /* value */
            lstore 1 /* max */
        10: .line 1428
            iconst_1
            istore 3 /* isMaxSet */
        end local 4 // long value
        11: .line 1423
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int top top int int long[]
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 7
        13: .line 1431
            lload 1 /* max */
            lreturn
        end local 3 // boolean isMaxSet
        end local 1 // long max
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            3   14     1       max  J
            6   14     3  isMaxSet  Z
            8   11     4     value  J

  public long min();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
         0: .line 1437
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.isEmpty:()Z
            ifeq 2
         1: .line 1439
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 1 /* min */
        start local 1 // long min
         3: .line 1442
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: long
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* isMinSet */
        start local 3 // boolean isMinSet
         6: .line 1444
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int top top int int long[]
      StackMap stack:
         7: aload 8
            iload 6
            laload
            lstore 4 /* value */
        start local 4 // long value
         8: .line 1446
            lload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 11
            iload 3 /* isMinSet */
            ifeq 9
            lload 4 /* value */
            lload 1 /* min */
            lcmp
            ifge 11
         9: .line 1448
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int long int int long[]
      StackMap stack:
            lload 4 /* value */
            lstore 1 /* min */
        10: .line 1449
            iconst_1
            istore 3 /* isMinSet */
        end local 4 // long value
        11: .line 1444
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet long int top top int int long[]
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 7
        13: .line 1452
            lload 1 /* min */
            lreturn
        end local 3 // boolean isMinSet
        end local 1 // long min
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            3   14     1       min  J
            6   14     3  isMinSet  Z
            8   11     4     value  J

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction function
         0: .line 1458
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 1459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.zeroToThirtyOne:I
            istore 4 /* zeroToThirtyOne */
        start local 4 // int zeroToThirtyOne
         2: .line 1460
            goto 6
         3: .line 1462
      StackMap locals: java.lang.Object int
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2l
            lstore 5 /* value */
        start local 5 // long value
         4: .line 1463
            aload 2 /* function */
            aload 3 /* result */
            lload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction.valueOf:(Ljava/lang/Object;J)Ljava/lang/Object;
            astore 3 /* result */
         5: .line 1464
            iload 4 /* zeroToThirtyOne */
            iconst_1
            lload 5 /* value */
            l2i
            ishl
            iconst_m1
            ixor
            iand
            istore 4 /* zeroToThirtyOne */
        end local 5 // long value
         6: .line 1460
      StackMap locals:
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            ifne 3
         7: .line 1467
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet java.lang.Object org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction java.lang.Object int top top int int long[]
      StackMap stack:
         8: aload 9
            iload 7
            laload
            lstore 5 /* value */
        start local 5 // long value
         9: .line 1469
            lload 5 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.isNonSentinel:(J)Z
            ifeq 11
        10: .line 1471
            aload 2 /* function */
            aload 3 /* result */
            lload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction.valueOf:(Ljava/lang/Object;J)Ljava/lang/Object;
            astore 3 /* result */
        end local 5 // long value
        11: .line 1467
      StackMap locals:
      StackMap stack:
            iinc 7 1
      StackMap locals:
      StackMap stack:
        12: iload 7
            iload 8
            if_icmplt 8
        13: .line 1474
            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.ObjectLongToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   14     1    injectedValue  TT;
            0   14     2         function  Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction<-TT;+TT;>;
            1   14     3           result  TT;
            2   14     4  zeroToThirtyOne  I
            4    6     5            value  J
            9   11     5            value  J
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction<-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.LongHashSet$ImmutableLongHashSet this
         0: .line 1479
            new org.eclipse.collections.impl.set.immutable.primitive.ImmutableLongSetSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.ImmutableLongSetSerializationProxy.<init>:(Lorg/eclipse/collections/api/set/primitive/LongSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;

  int probe(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long element
         0: .line 1485
            aload 0 /* this */
            lload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.spreadAndMask:(J)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 1486
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 3 /* index */
            laload
            lstore 4 /* valueAtIndex */
        start local 4 // long valueAtIndex
         2: .line 1488
            lload 4 /* valueAtIndex */
            lload 1 /* element */
            lcmp
            ifeq 3
            lload 4 /* valueAtIndex */
            lconst_0
            lcmp
            ifne 4
         3: .line 1490
      StackMap locals: int long
      StackMap stack:
            iload 3 /* index */
            ireturn
         4: .line 1493
      StackMap locals:
      StackMap stack:
            lload 4 /* valueAtIndex */
            lconst_1
            lcmp
            ifne 5
            iload 3 /* index */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_m1
      StackMap locals:
      StackMap stack: int
         6: istore 6 /* removedIndex */
        start local 6 // int removedIndex
         7: .line 1494
            iconst_1
            istore 7 /* i */
        start local 7 // int i
         8: goto 20
         9: .line 1496
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            arraylength
            iconst_1
            isub
            iand
            istore 8 /* nextIndex */
        start local 8 // int nextIndex
        10: .line 1497
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 8 /* nextIndex */
            laload
            lstore 4 /* valueAtIndex */
        11: .line 1498
            lload 4 /* valueAtIndex */
            lload 1 /* element */
            lcmp
            ifne 13
        12: .line 1500
            iload 8 /* nextIndex */
            ireturn
        13: .line 1502
      StackMap locals: int
      StackMap stack:
            lload 4 /* valueAtIndex */
            lconst_0
            lcmp
            ifne 17
        14: .line 1504
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 15
            iload 8 /* nextIndex */
            goto 16
      StackMap locals:
      StackMap stack:
        15: iload 6 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        16: ireturn
        17: .line 1506
      StackMap locals:
      StackMap stack:
            lload 4 /* valueAtIndex */
            lconst_1
            lcmp
            ifne 19
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 1508
            iload 8 /* nextIndex */
            istore 6 /* removedIndex */
        end local 8 // int nextIndex
        19: .line 1494
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 7 /* i */
            iconst_4
            if_icmplt 9
        end local 7 // int i
        21: .line 1511
            aload 0 /* this */
            lload 1 /* element */
            iload 6 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.probeTwo:(JI)I
            ireturn
        end local 6 // int removedIndex
        end local 4 // long valueAtIndex
        end local 3 // int index
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   22     1       element  J
            1   22     3         index  I
            2   22     4  valueAtIndex  J
            7   22     6  removedIndex  I
            8   21     7             i  I
           10   19     8     nextIndex  I
    MethodParameters:
         Name  Flags
      element  

  int probeTwo(long, int);
    descriptor: (JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long element
        start local 3 // int removedIndex
         0: .line 1516
            aload 0 /* this */
            lload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.spreadTwoAndMask:(J)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 1517
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 14
         3: .line 1519
      StackMap locals: int int
      StackMap stack:
            iload 4 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         4: .line 1520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 6 /* nextIndex */
            laload
            lstore 7 /* valueAtIndex */
        start local 7 // long valueAtIndex
         5: .line 1521
            lload 7 /* valueAtIndex */
            lload 1 /* element */
            lcmp
            ifne 7
         6: .line 1523
            iload 6 /* nextIndex */
            ireturn
         7: .line 1525
      StackMap locals: int long
      StackMap stack:
            lload 7 /* valueAtIndex */
            lconst_0
            lcmp
            ifne 11
         8: .line 1527
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 9
            iload 6 /* nextIndex */
            goto 10
      StackMap locals:
      StackMap stack:
         9: iload 3 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        10: ireturn
        11: .line 1529
      StackMap locals:
      StackMap stack:
            lload 7 /* valueAtIndex */
            lconst_1
            lcmp
            ifne 13
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 1531
            iload 6 /* nextIndex */
            istore 3 /* removedIndex */
        end local 7 // long valueAtIndex
        end local 6 // int nextIndex
        13: .line 1517
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iconst_4
            if_icmplt 3
        end local 5 // int i
        15: .line 1534
            aload 0 /* this */
            lload 1 /* element */
            iload 3 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.probeThree:(JI)I
            ireturn
        end local 4 // int index
        end local 3 // int removedIndex
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   16     1       element  J
            0   16     3  removedIndex  I
            1   16     4         index  I
            2   15     5             i  I
            4   13     6     nextIndex  I
            5   13     7  valueAtIndex  J
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int probeThree(long, int);
    descriptor: (JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long element
        start local 3 // int removedIndex
         0: .line 1539
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadOne:(J)J
            invokestatic java.lang.Long.reverse:(J)J
            l2i
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
         1: .line 1540
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadTwo:(J)J
            invokestatic java.lang.Long.reverse:(J)J
            l2i
            iconst_1
            ior
            istore 5 /* spreadTwo */
        start local 5 // int spreadTwo
         2: .line 1544
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextIndex */
            iload 5 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.mask:(I)I
            istore 4 /* nextIndex */
         3: .line 1545
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            iload 4 /* nextIndex */
            laload
            lstore 6 /* valueAtIndex */
        start local 6 // long valueAtIndex
         4: .line 1546
            lload 6 /* valueAtIndex */
            lload 1 /* element */
            lcmp
            ifne 6
         5: .line 1548
            iload 4 /* nextIndex */
            ireturn
         6: .line 1550
      StackMap locals: long
      StackMap stack:
            lload 6 /* valueAtIndex */
            lconst_0
            lcmp
            ifne 10
         7: .line 1552
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 8
            iload 4 /* nextIndex */
            goto 9
      StackMap locals:
      StackMap stack:
         8: iload 3 /* removedIndex */
      StackMap locals:
      StackMap stack: int
         9: ireturn
        10: .line 1554
      StackMap locals:
      StackMap stack:
            lload 6 /* valueAtIndex */
            lconst_1
            lcmp
            ifne 2
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 1556
            iload 4 /* nextIndex */
            istore 3 /* removedIndex */
        end local 6 // long valueAtIndex
        12: .line 1542
            goto 2
        end local 5 // int spreadTwo
        end local 4 // int nextIndex
        end local 3 // int removedIndex
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0   13     1       element  J
            0   13     3  removedIndex  I
            1   13     4     nextIndex  I
            2   13     5     spreadTwo  I
            4   12     6  valueAtIndex  J
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int spreadAndMask(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long element
         0: .line 1564
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadOne:(J)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 1565
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    2     1  element  J
            1    2     3     code  J
    MethodParameters:
         Name  Flags
      element  

  int spreadTwoAndMask(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
        start local 1 // long element
         0: .line 1570
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadTwo:(J)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 1571
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    2     1  element  J
            1    2     3     code  J
    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.LongHashSet$ImmutableLongHashSet this
        start local 1 // int spread
         0: .line 1576
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.table:[J
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet$ImmutableLongHashSet;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  public org.eclipse.collections.api.LongIterable select(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/LongIterable;
    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.LongHashSet$ImmutableLongHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableLongCollection select(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableLongCollection;
    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.LongHashSet$ImmutableLongHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.LongSet select(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/LongSet;
    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.LongHashSet$ImmutableLongHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable reject(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/LongIterable;
    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.LongHashSet$ImmutableLongHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableLongCollection reject(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableLongCollection;
    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.LongHashSet$ImmutableLongHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.LongSet reject(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/LongSet;
    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.LongHashSet$ImmutableLongHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "LongHashSet.java"
NestHost: org.eclipse.collections.impl.set.mutable.primitive.LongHashSet
InnerClasses:
  private final ImmutableLongHashSet = org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet of org.eclipse.collections.impl.set.mutable.primitive.LongHashSet
  private InternalLongIterator = org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet$InternalLongIterator of org.eclipse.collections.impl.set.mutable.primitive.LongHashSet$ImmutableLongHashSet