public class org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet extends org.eclipse.collections.impl.set.primitive.AbstractDoubleSet implements org.eclipse.collections.api.set.primitive.MutableDoubleSet, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
  super_class: org.eclipse.collections.impl.set.primitive.AbstractDoubleSet
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

  private static final double EMPTY;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.0

  private static final double REMOVED;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0

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

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

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

  private double[] table;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

  private int occupiedWithData;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int occupiedWithSentinels;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int zeroToThirtyOne;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int zeroToThirtyOneOccupied;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private transient boolean copyOnWrite;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 68
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.primitive.AbstractDoubleSet.<init>:()V
         1: .line 70
            aload 0 /* this */
            bipush 16
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.allocateTable:(I)V
         2: .line 71
            return
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // int initialCapacity
         0: .line 73
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.primitive.AbstractDoubleSet.<init>:()V
         1: .line 75
            iload 1 /* initialCapacity */
            ifge 3
         2: .line 77
            new java.lang.IllegalArgumentException
            dup
            ldc "initial capacity cannot be less than 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 79
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* initialCapacity */
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.smallestPowerOfTwoGreaterThan:(I)I
            istore 2 /* capacity */
        start local 2 // int capacity
         4: .line 80
            aload 0 /* this */
            iload 2 /* capacity */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.allocateTable:(I)V
         5: .line 81
            return
        end local 2 // int capacity
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    6     1  initialCapacity  I
            4    6     2         capacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(double[]);
    descriptor: ([D)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double[] elements
         0: .line 85
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:()V
         1: .line 86
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.addAll:([D)Z
            pop
         2: .line 87
            return
        end local 1 // double[] elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    3     1  elements  [D
    MethodParameters:
          Name  Flags
      elements  

  public void <init>(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable elements
         0: .line 91
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:()V
         1: .line 92
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.addAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
         2: .line 93
            return
        end local 1 // org.eclipse.collections.api.DoubleIterable elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    3     1  elements  Lorg/eclipse/collections/api/DoubleIterable;
    MethodParameters:
          Name  Flags
      elements  

  public void <init>(org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet);
    descriptor: (Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet set
         0: .line 95
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.primitive.AbstractDoubleSet.<init>:()V
         1: .line 97
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
         2: .line 98
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
         3: .line 99
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         4: .line 100
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         5: .line 101
            aload 0 /* this */
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.allocateTable:(I)V
         6: .line 103
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iconst_0
            aload 1 /* set */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 104
            return
        end local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet set
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    8     1   set  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    MethodParameters:
      Name  Flags
      set   

  private int smallestPowerOfTwoGreaterThan(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // int n
         0: .line 108
            iload 1 /* n */
            iconst_1
            if_icmple 1
            iload 1 /* n */
            iconst_1
            isub
            invokestatic java.lang.Integer.highestOneBit:(I)I
            iconst_1
            ishl
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int n
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    3     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public static org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet newSet(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.DoubleIterable source
         0: .line 113
            aload 0 /* source */
            instanceof org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            ifeq 2
         1: .line 115
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            dup
            aload 0 /* source */
            checkcast org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:(Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;)V
            areturn
         2: .line 117
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            dup
            aload 0 /* source */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:(Lorg/eclipse/collections/api/DoubleIterable;)V
            areturn
        end local 0 // org.eclipse.collections.api.DoubleIterable source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  source  Lorg/eclipse/collections/api/DoubleIterable;
    MethodParameters:
        Name  Flags
      source  

  public static org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet newSetWith(double[]);
    descriptor: ([D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // double[] source
         0: .line 122
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            dup
            aload 0 /* source */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:([D)V
            areturn
        end local 0 // double[] source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  [D
    MethodParameters:
        Name  Flags
      source  

  private static boolean isBetweenZeroAndThirtyOne(double);
    descriptor: (D)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double value
         0: .line 127
            dload 0 /* value */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            iflt 1
            dload 0 /* value */
            ldc 31.0
            invokestatic java.lang.Double.compare:(DD)I
            ifgt 1
            dload 0 /* value */
            dload 0 /* value */
            invokestatic java.lang.Math.floor:(D)D
            invokestatic java.lang.Double.compare:(DD)I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  value  D
    MethodParameters:
       Name  Flags
      value  

  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.DoubleHashSet this
         0: .line 133
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 134
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         2: .line 135
            goto 6
         3: .line 137
      StackMap locals: int int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 3 /* value */
        start local 3 // double value
         4: .line 138
            iload 1 /* result */
            dload 3 /* value */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dload 3 /* value */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
         5: .line 139
            iload 2 /* zeroToThirtyOne */
            iconst_1
            dload 3 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // double value
         6: .line 135
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 3
         7: .line 141
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            ifnull 14
         8: .line 143
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 13
        10: .line 145
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        11: .line 147
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
        12: .line 143
      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.DoubleHashSet.table:[D
            arraylength
            if_icmplt 10
        end local 3 // int i
        14: .line 151
      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.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            1   15     1           result  I
            2   15     2  zeroToThirtyOne  I
            4    6     3            value  D
            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.DoubleHashSet this
         0: .line 157
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  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.DoubleHashSet 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 165
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 167
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         2: .line 168
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 6 /* zeroToThirtyOne */
        start local 6 // int zeroToThirtyOne
         3: .line 169
            goto 10
         4: .line 171
      StackMap locals: int int
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 7 /* value */
        start local 7 // double value
         5: .line 172
            iload 5 /* count */
            ifle 7
         6: .line 174
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         7: .line 176
      StackMap locals: double
      StackMap stack:
            iinc 5 /* count */ 1
         8: .line 177
            aload 1 /* appendable */
            dload 7 /* value */
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 178
            iload 6 /* zeroToThirtyOne */
            iconst_1
            dload 7 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 6 /* zeroToThirtyOne */
        end local 7 // double value
        10: .line 169
      StackMap locals:
      StackMap stack:
            iload 6 /* zeroToThirtyOne */
            ifne 4
        11: .line 181
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 11
            arraylength
            istore 10
            iconst_0
            istore 9
            goto 19
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top top int int double[]
      StackMap stack:
        12: aload 11
            iload 9
            daload
            dstore 7 /* value */
        start local 7 // double value
        13: .line 183
            dload 7 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 18
        14: .line 185
            iload 5 /* count */
            ifle 16
        15: .line 187
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        16: .line 189
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int double int int double[]
      StackMap stack:
            iinc 5 /* count */ 1
        17: .line 190
            aload 1 /* appendable */
            dload 7 /* value */
            invokestatic java.lang.String.valueOf:(D)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 7 // double value
        18: .line 181
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet java.lang.Appendable java.lang.String java.lang.String java.lang.String int int top top int int double[]
      StackMap stack:
            iinc 9 1
      StackMap locals:
      StackMap stack:
        19: iload 9
            iload 10
            if_icmplt 12
        20: .line 193
            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 194
            goto 24
        22: .line 195
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet 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 197
            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 199
      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.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   25     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            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  D
           13   18     7            value  D
           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 boolean add(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
         0: .line 204
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isBetweenZeroAndThirtyOne:(D)Z
            ifeq 7
         1: .line 206
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* initial */
        start local 3 // int initial
         2: .line 207
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            iconst_1
            dload 1 /* element */
            d2i
            ishl
            ior
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         3: .line 208
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            iload 3 /* initial */
            if_icmpeq 6
         4: .line 210
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         5: .line 211
            iconst_1
            ireturn
         6: .line 213
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int initial
         7: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.probe:(D)I
            istore 3 /* index */
        start local 3 // int index
         8: .line 218
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            daload
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 10
         9: .line 221
            iconst_0
            ireturn
        10: .line 224
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
            ifeq 12
        11: .line 226
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyTable:()V
        12: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            daload
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 14
        13: .line 230
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
        14: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            dload 1 /* element */
            dastore
        15: .line 233
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
        16: .line 234
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            iadd
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.maxOccupiedWithData:()I
            if_icmple 18
        17: .line 236
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.rehashAndGrow:()V
        18: .line 238
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // int index
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   19     1  element  D
            2    7     3  initial  I
            8   19     3    index  I
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(double[]);
    descriptor: ([D)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double[] source
         0: .line 244
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 245
            aload 1 /* source */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 5
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double[] int top top int int double[]
      StackMap stack:
         2: aload 7
            iload 5
            daload
            dstore 3 /* item */
        start local 3 // double item
         3: .line 247
            aload 0 /* this */
            dload 3 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
        end local 3 // double item
         4: .line 245
            iinc 5 1
      StackMap locals:
      StackMap stack:
         5: iload 5
            iload 6
            if_icmplt 2
         6: .line 249
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 2 /* oldSize */
            if_icmpeq 7
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double[] int
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // double[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    8     1   source  [D
            1    8     2  oldSize  I
            3    4     3     item  D
    MethodParameters:
        Name  Flags
      source  

  public boolean addAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable source
         0: .line 255
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.DoubleIterable.isEmpty:()Z
            ifeq 2
         1: .line 257
            iconst_0
            ireturn
         2: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         3: .line 260
            aload 1 /* source */
            instanceof org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            ifeq 14
         4: .line 262
            aload 1 /* source */
            checkcast org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            astore 3 /* hashSet */
        start local 3 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet hashSet
         5: .line 263
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            aload 3 /* hashSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            ior
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         6: .line 264
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.bitCount:(I)I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         7: .line 265
            aload 3 /* hashSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.DoubleIterable int org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet top top int int double[]
      StackMap stack:
         8: aload 8
            iload 6
            daload
            dstore 4 /* item */
        start local 4 // double item
         9: .line 267
            dload 4 /* item */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
        10: .line 269
            aload 0 /* this */
            dload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
        end local 4 // double item
        11: .line 265
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 8
        end local 3 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet hashSet
        13: .line 272
            goto 19
        14: .line 275
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.DoubleIterable int
      StackMap stack:
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.DoubleIterable.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        15: .line 276
            goto 18
        16: .line 278
      StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 4 /* item */
        start local 4 // double item
        17: .line 279
            aload 0 /* this */
            dload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
        end local 4 // double item
        18: .line 276
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 16
        end local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        19: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 2 /* oldSize */
            if_icmpeq 20
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        20: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // org.eclipse.collections.api.DoubleIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   21     1    source  Lorg/eclipse/collections/api/DoubleIterable;
            3   21     2   oldSize  I
            5   13     3   hashSet  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            9   11     4      item  D
           15   19     3  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
           17   18     4      item  D
    MethodParameters:
        Name  Flags
      source  

  public boolean remove(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double value
         0: .line 288
            dload 1 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isBetweenZeroAndThirtyOne:(D)Z
            ifeq 2
         1: .line 290
            aload 0 /* this */
            dload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.removeZeroToThirtyOne:(D)Z
            ireturn
         2: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            ifne 4
         3: .line 294
            iconst_0
            ireturn
         4: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.probe:(D)I
            istore 3 /* index */
        start local 3 // int index
         5: .line 297
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            daload
            dload 1 /* value */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 12
         6: .line 299
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
            ifeq 8
         7: .line 301
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyTable:()V
         8: .line 303
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            dconst_1
            dastore
         9: .line 304
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
        10: .line 305
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
        11: .line 306
            iconst_1
            ireturn
        12: .line 308
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int index
        end local 1 // double value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   13     1  value  D
            5   13     3  index  I
    MethodParameters:
       Name  Flags
      value  

  private boolean removeZeroToThirtyOne(double);
    descriptor: (D)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double value
         0: .line 313
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* initial */
        start local 3 // int initial
         1: .line 314
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            iconst_1
            dload 1 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         2: .line 315
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            iload 3 /* initial */
            if_icmpne 4
         3: .line 317
            iconst_0
            ireturn
         4: .line 319
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         5: .line 320
            iconst_1
            ireturn
        end local 3 // int initial
        end local 1 // double value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    6     1    value  D
            1    6     3  initial  I
    MethodParameters:
       Name  Flags
      value  

  public boolean removeAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable source
         0: .line 326
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.DoubleIterable.isEmpty:()Z
            ifeq 2
         1: .line 328
            iconst_0
            ireturn
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         3: .line 331
            aload 1 /* source */
            instanceof org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            ifeq 14
         4: .line 333
            aload 1 /* source */
            checkcast org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            astore 3 /* hashSet */
        start local 3 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet hashSet
         5: .line 334
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            aload 3 /* hashSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            iconst_m1
            ixor
            iand
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         6: .line 335
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.bitCount:(I)I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         7: .line 336
            aload 3 /* hashSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.DoubleIterable int org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet top top int int double[]
      StackMap stack:
         8: aload 8
            iload 6
            daload
            dstore 4 /* item */
        start local 4 // double item
         9: .line 338
            dload 4 /* item */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
        10: .line 340
            aload 0 /* this */
            dload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.remove:(D)Z
            pop
        end local 4 // double item
        11: .line 336
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 8
        end local 3 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet hashSet
        13: .line 343
            goto 19
        14: .line 346
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.DoubleIterable int
      StackMap stack:
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.DoubleIterable.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        15: .line 347
            goto 18
        16: .line 349
      StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 4 /* item */
        start local 4 // double item
        17: .line 350
            aload 0 /* this */
            dload 4 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.remove:(D)Z
            pop
        end local 4 // double item
        18: .line 347
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 16
        end local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        19: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 2 /* oldSize */
            if_icmpeq 20
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        20: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // org.eclipse.collections.api.DoubleIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   21     1    source  Lorg/eclipse/collections/api/DoubleIterable;
            3   21     2   oldSize  I
            5   13     3   hashSet  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            9   11     4      item  D
           15   19     3  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
           17   18     4      item  D
    MethodParameters:
        Name  Flags
      source  

  public boolean removeAll(double[]);
    descriptor: ([D)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double[] source
         0: .line 359
            aload 1 /* source */
            arraylength
            ifne 2
         1: .line 361
            iconst_0
            ireturn
         2: .line 363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         3: .line 364
            aload 1 /* source */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 7
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double[] int top top int int double[]
      StackMap stack:
         4: aload 7
            iload 5
            daload
            dstore 3 /* item */
        start local 3 // double item
         5: .line 366
            aload 0 /* this */
            dload 3 /* item */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.remove:(D)Z
            pop
        end local 3 // double item
         6: .line 364
            iinc 5 1
      StackMap locals:
      StackMap stack:
         7: iload 5
            iload 6
            if_icmplt 4
         8: .line 368
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 2 /* oldSize */
            if_icmpeq 9
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double[] int
      StackMap stack:
         9: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // double[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   10     1   source  [D
            3   10     2  oldSize  I
            5    6     3     item  D
    MethodParameters:
        Name  Flags
      source  

  public boolean retainAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable source
         0: .line 374
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 375
            aload 1 /* source */
            instanceof org.eclipse.collections.api.set.primitive.DoubleSet
            ifeq 2
            aload 1 /* source */
            checkcast org.eclipse.collections.api.set.primitive.DoubleSet
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aload 1 /* source */
            invokeinterface org.eclipse.collections.api.DoubleIterable.toSet:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
      StackMap locals:
      StackMap stack: org.eclipse.collections.api.set.primitive.DoubleSet
         3: astore 3 /* sourceSet */
        start local 3 // org.eclipse.collections.api.set.primitive.DoubleSet sourceSet
         4: .line 376
            aload 0 /* this */
            aload 3 /* sourceSet */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/eclipse/collections/api/set/primitive/DoubleSet;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (D)Z
                  org/eclipse/collections/api/DoubleIterable.contains(D)Z (9 itf)
                  (D)Z
                  1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            astore 4 /* retained */
        start local 4 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet retained
         5: .line 377
            aload 4 /* retained */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 2 /* oldSize */
            if_icmpeq 12
         6: .line 379
            aload 0 /* this */
            aload 4 /* retained */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         7: .line 380
            aload 0 /* this */
            aload 4 /* retained */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         8: .line 381
            aload 0 /* this */
            aload 4 /* retained */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
         9: .line 382
            aload 0 /* this */
            aload 4 /* retained */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
        10: .line 383
            aload 0 /* this */
            aload 4 /* retained */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
        11: .line 384
            iconst_1
            ireturn
        12: .line 386
      StackMap locals: org.eclipse.collections.api.set.primitive.DoubleSet org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet retained
        end local 3 // org.eclipse.collections.api.set.primitive.DoubleSet sourceSet
        end local 2 // int oldSize
        end local 1 // org.eclipse.collections.api.DoubleIterable source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   13     1     source  Lorg/eclipse/collections/api/DoubleIterable;
            1   13     2    oldSize  I
            4   13     3  sourceSet  Lorg/eclipse/collections/api/set/primitive/DoubleSet;
            5   13     4   retained  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    MethodParameters:
        Name  Flags
      source  

  public boolean retainAll(double[]);
    descriptor: ([D)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double[] source
         0: .line 392
            aload 0 /* this */
            aload 1 /* source */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.newSetWith:([D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.retainAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            ireturn
        end local 1 // double[] source
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    1     1  source  [D
    MethodParameters:
        Name  Flags
      source  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 398
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
         1: .line 399
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
         2: .line 400
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
         3: .line 402
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
         4: .line 403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
            ifeq 8
         5: .line 405
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            newarray 7
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
         6: .line 406
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
         7: .line 407
            goto 9
         8: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dconst_0
            invokestatic java.util.Arrays.fill:([DD)V
         9: .line 412
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet with(double);
    descriptor: (D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
         0: .line 417
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
         1: .line 418
            aload 0 /* this */
            areturn
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    2     1  element  D
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet without(double);
    descriptor: (D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
         0: .line 424
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.remove:(D)Z
            pop
         1: .line 425
            aload 0 /* this */
            areturn
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    2     1  element  D
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable elements
         0: .line 431
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.addAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
         1: .line 432
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.DoubleIterable elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    2     1  elements  Lorg/eclipse/collections/api/DoubleIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.DoubleIterable elements
         0: .line 438
            aload 0 /* this */
            aload 1 /* elements */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.removeAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
         1: .line 439
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.DoubleIterable elements
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    2     1  elements  Lorg/eclipse/collections/api/DoubleIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 445
            new org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableDoubleSet
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableDoubleSet.<init>:(Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 451
            new org.eclipse.collections.impl.set.mutable.primitive.SynchronizedDoubleSet
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.SynchronizedDoubleSet.<init>:(Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public org.eclipse.collections.api.set.primitive.ImmutableDoubleSet toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 457
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            ifne 2
         1: .line 459
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableDoubleSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableDoubleSetFactory.with:()Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
            areturn
         2: .line 461
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iconst_1
            if_icmpne 4
         3: .line 463
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableDoubleSetFactory;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.doubleIterator:()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
            invokeinterface org.eclipse.collections.api.iterator.MutableDoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableDoubleSetFactory.with:(D)Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
            areturn
         4: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.smallestPowerOfTwoGreaterThan:(I)I
            if_icmpne 8
         5: .line 468
            aload 0 /* this */
            astore 1 /* mutableSet */
        start local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet mutableSet
         6: .line 469
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
         7: .line 470
            goto 10
        end local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet mutableSet
         8: .line 473
      StackMap locals:
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:(I)V
            astore 1 /* mutableSet */
        start local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet mutableSet
         9: .line 474
            aload 1 /* mutableSet */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.addAll:(Lorg/eclipse/collections/api/DoubleIterable;)Z
            pop
        10: .line 476
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
      StackMap stack:
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet
            dup
            aload 1 /* mutableSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            aload 1 /* mutableSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            aload 1 /* mutableSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            aload 1 /* mutableSet */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet.<init>:([DIII)V
            areturn
        end local 1 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet mutableSet
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            6    8     1  mutableSet  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            9   11     1  mutableSet  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

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

  public double[] toArray();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 488
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            newarray 7
            astore 1 /* array */
        start local 1 // double[] array
         1: .line 490
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         2: .line 491
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         3: .line 492
            goto 8
         4: .line 494
      StackMap locals: double[] int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         5: .line 495
            aload 1 /* array */
            iload 2 /* j */
            dload 4 /* value */
            dastore
         6: .line 496
            iinc 2 /* j */ 1
         7: .line 497
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         8: .line 492
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 4
         9: .line 500
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 15
        11: .line 502
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 14
        12: .line 504
            aload 1 /* array */
            iload 2 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 4 /* i */
            daload
            dastore
        13: .line 505
            iinc 2 /* j */ 1
        14: .line 500
      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.DoubleHashSet.table:[D
            arraylength
            if_icmpge 16
            iload 2 /* j */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            if_icmplt 11
        end local 4 // int i
        16: .line 508
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int j
        end local 1 // double[] array
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   17     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            1   17     1            array  [D
            2   17     2                j  I
            3   17     3  zeroToThirtyOne  I
            5    8     4            value  D
           10   16     4                i  I

  public double[] toArray(double[]);
    descriptor: ([D)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double[] array
         0: .line 514
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            if_icmpge 2
         1: .line 516
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            newarray 7
            astore 1 /* array */
         2: .line 519
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         3: .line 520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         4: .line 521
            goto 9
         5: .line 523
      StackMap locals: int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         6: .line 524
            aload 1 /* array */
            iload 2 /* j */
            dload 4 /* value */
            dastore
         7: .line 525
            iinc 2 /* j */ 1
         8: .line 526
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         9: .line 521
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 5
        10: .line 529
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        11: goto 16
        12: .line 531
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 15
        13: .line 533
            aload 1 /* array */
            iload 2 /* j */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 4 /* i */
            daload
            dastore
        14: .line 534
            iinc 2 /* j */ 1
        15: .line 529
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            if_icmpge 17
            iload 2 /* j */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            if_icmplt 12
        end local 4 // int i
        17: .line 537
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int j
        end local 1 // double[] array
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   18     1            array  [D
            3   18     2                j  I
            4   18     3  zeroToThirtyOne  I
            6    9     4            value  D
           11   17     4                i  I
    MethodParameters:
       Name  Flags
      array  

  public boolean contains(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double value
         0: .line 543
            dload 1 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isBetweenZeroAndThirtyOne:(D)Z
            ifeq 4
         1: .line 545
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* temp */
        start local 3 // int temp
         2: .line 546
            iload 3 /* temp */
            dload 1 /* value */
            d2i
            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 548
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            aload 0 /* this */
            dload 1 /* value */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.probe:(D)I
            daload
            dload 1 /* value */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // double value
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    6     1  value  D
            2    4     3   temp  I
    MethodParameters:
       Name  Flags
      value  

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

  public void each(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 563
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 564
            goto 5
         2: .line 566
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 3 /* value */
        start local 3 // double value
         3: .line 567
            aload 1 /* procedure */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         4: .line 568
            iload 2 /* zeroToThirtyOne */
            iconst_1
            dload 3 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // double value
         5: .line 564
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         6: .line 571
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 11
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure int top top int int double[]
      StackMap stack:
         7: aload 7
            iload 5
            daload
            dstore 3 /* value */
        start local 3 // double value
         8: .line 573
            dload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 10
         9: .line 575
            aload 1 /* procedure */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
        end local 3 // double value
        10: .line 571
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        11: iload 5
            iload 6
            if_icmplt 7
        12: .line 578
            return
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   13     1        procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
            1   13     2  zeroToThirtyOne  I
            3    5     3            value  D
            8   10     3            value  D
    MethodParameters:
           Name  Flags
      procedure  

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

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 592
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         1: .line 593
            goto 6
         2: .line 595
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         3: .line 596
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 598
            aload 2 /* target */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
         5: .line 600
      StackMap locals: double
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         6: .line 593
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 2
         7: .line 603
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate org.eclipse.collections.api.collection.primitive.MutableDoubleCollection int top top int int double[]
      StackMap stack:
         8: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         9: .line 605
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        10: .line 607
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 12
        11: .line 609
            aload 2 /* target */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
        end local 4 // double value
        12: .line 603
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        13: iload 6
            iload 7
            if_icmplt 8
        14: .line 613
            aload 2 /* target */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0   15     2           target  TR;
            1   15     3  zeroToThirtyOne  I
            3    6     4            value  D
            9   12     4            value  D
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

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

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 628
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         1: .line 629
            goto 6
         2: .line 631
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         3: .line 632
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 5
         4: .line 634
            aload 2 /* target */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
         5: .line 636
      StackMap locals: double
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         6: .line 629
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 2
         7: .line 639
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate org.eclipse.collections.api.collection.primitive.MutableDoubleCollection int top top int int double[]
      StackMap stack:
         8: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         9: .line 641
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        10: .line 643
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 12
        11: .line 645
            aload 2 /* target */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.collection.primitive.MutableDoubleCollection.add:(D)Z
            pop
        end local 4 // double value
        12: .line 639
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        13: iload 6
            iload 7
            if_icmplt 8
        14: .line 649
            aload 2 /* target */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0   15     2           target  TR;
            1   15     3  zeroToThirtyOne  I
            3    6     4            value  D
            9   12     4            value  D
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <V> org.eclipse.collections.api.set.MutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
         0: .line 655
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.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.DoubleHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <V, R extends java.util.Collection<V>> R collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        start local 2 // java.util.Collection target
         0: .line 664
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         1: .line 665
            goto 5
         2: .line 667
      StackMap locals: int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         3: .line 668
            aload 2 /* target */
            aload 1 /* function */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         4: .line 669
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         5: .line 665
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 2
         6: .line 672
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 11
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction java.util.Collection int top top int int double[]
      StackMap stack:
         7: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         8: .line 674
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 10
         9: .line 676
            aload 2 /* target */
            aload 1 /* function */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // double value
        10: .line 672
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        11: iload 6
            iload 7
            if_icmplt 7
        12: .line 679
            aload 2 /* target */
            areturn
        end local 3 // int zeroToThirtyOne
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   13     1         function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
            0   13     2           target  TR;
            1   13     3  zeroToThirtyOne  I
            3    5     4            value  D
            8   10     4            value  D
    Signature: <V:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public double detectIfNone(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate, double);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        start local 2 // double ifNone
         0: .line 685
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 4 /* zeroToThirtyOne */
        start local 4 // int zeroToThirtyOne
         1: .line 686
            goto 6
         2: .line 688
      StackMap locals: int
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 5 /* value */
        start local 5 // double value
         3: .line 689
            aload 1 /* predicate */
            dload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 691
            dload 5 /* value */
            dreturn
         5: .line 693
      StackMap locals: double
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            iconst_1
            dload 5 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 4 /* zeroToThirtyOne */
        end local 5 // double value
         6: .line 686
      StackMap locals:
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            ifne 2
         7: .line 696
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate double int top top int int double[]
      StackMap stack:
         8: aload 9
            iload 7
            daload
            dstore 5 /* value */
        start local 5 // double value
         9: .line 698
            dload 5 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        10: .line 700
            aload 1 /* predicate */
            dload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 12
        11: .line 702
            dload 5 /* value */
            dreturn
        end local 5 // double value
        12: .line 696
      StackMap locals:
      StackMap stack:
            iinc 7 1
      StackMap locals:
      StackMap stack:
        13: iload 7
            iload 8
            if_icmplt 8
        14: .line 706
            dload 2 /* ifNone */
            dreturn
        end local 4 // int zeroToThirtyOne
        end local 2 // double ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            0   15     2           ifNone  D
            1   15     4  zeroToThirtyOne  I
            3    6     5            value  D
            9   12     5            value  D
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int count(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 712
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 713
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 3 /* zeroToThirtyOne */
        start local 3 // int zeroToThirtyOne
         2: .line 714
            goto 7
         3: .line 716
      StackMap locals: int int
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 4 /* value */
        start local 4 // double value
         4: .line 717
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 6
         5: .line 719
            iinc 2 /* count */ 1
         6: .line 721
      StackMap locals: double
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            iconst_1
            dload 4 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 3 /* zeroToThirtyOne */
        end local 4 // double value
         7: .line 714
      StackMap locals:
      StackMap stack:
            iload 3 /* zeroToThirtyOne */
            ifne 3
         8: .line 724
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 14
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate int int top top int int double[]
      StackMap stack:
         9: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
        10: .line 726
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 13
        11: .line 728
            aload 1 /* predicate */
            dload 4 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 13
        12: .line 730
            iinc 2 /* count */ 1
        end local 4 // double value
        13: .line 724
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        14: iload 6
            iload 7
            if_icmplt 9
        15: .line 734
            iload 2 /* count */
            ireturn
        end local 3 // int zeroToThirtyOne
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   16     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1   16     2            count  I
            2   16     3  zeroToThirtyOne  I
            4    7     4            value  D
           10   13     4            value  D
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 740
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 741
            goto 6
         2: .line 743
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 3 /* value */
        start local 3 // double value
         3: .line 744
            aload 1 /* predicate */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 5
         4: .line 746
            iconst_1
            ireturn
         5: .line 748
      StackMap locals: double
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            dload 3 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // double value
         6: .line 741
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 751
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate int top top int int double[]
      StackMap stack:
         8: aload 7
            iload 5
            daload
            dstore 3 /* value */
        start local 3 // double value
         9: .line 753
            dload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        10: .line 755
            aload 1 /* predicate */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifeq 12
        11: .line 757
            iconst_1
            ireturn
        end local 3 // double value
        12: .line 751
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 8
        14: .line 761
            iconst_0
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  D
            9   12     3            value  D
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
         0: .line 767
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         1: .line 768
            goto 6
         2: .line 770
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 3 /* value */
        start local 3 // double value
         3: .line 771
            aload 1 /* predicate */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 5
         4: .line 773
            iconst_0
            ireturn
         5: .line 775
      StackMap locals: double
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            iconst_1
            dload 3 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // double value
         6: .line 768
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 2
         7: .line 778
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 13
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet org.eclipse.collections.api.block.predicate.primitive.DoublePredicate int top top int int double[]
      StackMap stack:
         8: aload 7
            iload 5
            daload
            dstore 3 /* value */
        start local 3 // double value
         9: .line 780
            dload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 12
        10: .line 782
            aload 1 /* predicate */
            dload 3 /* value */
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoublePredicate.accept:(D)Z
            ifne 12
        11: .line 784
            iconst_0
            ireturn
        end local 3 // double value
        12: .line 778
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        13: iload 5
            iload 6
            if_icmplt 8
        14: .line 788
            iconst_1
            ireturn
        end local 2 // int zeroToThirtyOne
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoublePredicate predicate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   15     1        predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
            1   15     2  zeroToThirtyOne  I
            3    6     3            value  D
            9   12     3            value  D
    MethodParameters:
           Name  Flags
      predicate  

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

  public double sum();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=15, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 800
            dconst_0
            dstore 1 /* result */
        start local 1 // double result
         1: .line 801
            dconst_0
            dstore 3 /* compensation */
        start local 3 // double compensation
         2: .line 803
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 5 /* zeroToThirtyOne */
        start local 5 // int zeroToThirtyOne
         3: .line 804
            goto 10
         4: .line 806
      StackMap locals: double double int
      StackMap stack:
            iload 5 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 6 /* value */
        start local 6 // double value
         5: .line 807
            dload 6 /* value */
            dload 3 /* compensation */
            dsub
            dstore 8 /* adjustedValue */
        start local 8 // double adjustedValue
         6: .line 808
            dload 1 /* result */
            dload 8 /* adjustedValue */
            dadd
            dstore 10 /* nextSum */
        start local 10 // double nextSum
         7: .line 809
            dload 10 /* nextSum */
            dload 1 /* result */
            dsub
            dload 8 /* adjustedValue */
            dsub
            dstore 3 /* compensation */
         8: .line 810
            dload 10 /* nextSum */
            dstore 1 /* result */
         9: .line 811
            iload 5 /* zeroToThirtyOne */
            iconst_1
            dload 6 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 5 /* zeroToThirtyOne */
        end local 10 // double nextSum
        end local 8 // double adjustedValue
        end local 6 // double value
        10: .line 804
      StackMap locals:
      StackMap stack:
            iload 5 /* zeroToThirtyOne */
            ifne 4
        11: .line 814
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 10
            arraylength
            istore 9
            iconst_0
            istore 8
            goto 19
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double double int top top int int double[]
      StackMap stack:
        12: aload 10
            iload 8
            daload
            dstore 6 /* value */
        start local 6 // double value
        13: .line 816
            dload 6 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 18
        14: .line 818
            dload 6 /* value */
            dload 3 /* compensation */
            dsub
            dstore 11 /* adjustedValue */
        start local 11 // double adjustedValue
        15: .line 819
            dload 1 /* result */
            dload 11 /* adjustedValue */
            dadd
            dstore 13 /* nextSum */
        start local 13 // double nextSum
        16: .line 820
            dload 13 /* nextSum */
            dload 1 /* result */
            dsub
            dload 11 /* adjustedValue */
            dsub
            dstore 3 /* compensation */
        17: .line 821
            dload 13 /* nextSum */
            dstore 1 /* result */
        end local 13 // double nextSum
        end local 11 // double adjustedValue
        end local 6 // double value
        18: .line 814
      StackMap locals:
      StackMap stack:
            iinc 8 1
      StackMap locals:
      StackMap stack:
        19: iload 8
            iload 9
            if_icmplt 12
        20: .line 824
            dload 1 /* result */
            dreturn
        end local 5 // int zeroToThirtyOne
        end local 3 // double compensation
        end local 1 // double result
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   21     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            1   21     1           result  D
            2   21     3     compensation  D
            3   21     5  zeroToThirtyOne  I
            5   10     6            value  D
            6   10     8    adjustedValue  D
            7   10    10          nextSum  D
           13   18     6            value  D
           15   18    11    adjustedValue  D
           16   18    13          nextSum  D

  public double max();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 830
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isEmpty:()Z
            ifeq 2
         1: .line 832
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 834
      StackMap locals:
      StackMap stack:
            bipush 31
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            i2d
            dstore 1 /* max */
        start local 1 // double max
         3: .line 835
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: double
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* isMaxSet */
        start local 3 // boolean isMaxSet
         6: .line 837
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int top top int int double[]
      StackMap stack:
         7: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         8: .line 839
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
            iload 3 /* isMaxSet */
            ifeq 9
            dload 1 /* max */
            dload 4 /* value */
            invokestatic java.lang.Double.compare:(DD)I
            ifge 11
         9: .line 841
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int double int int double[]
      StackMap stack:
            dload 4 /* value */
            dstore 1 /* max */
        10: .line 842
            iconst_1
            istore 3 /* isMaxSet */
        end local 4 // double value
        11: .line 837
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int top top int int double[]
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 7
        13: .line 845
            dload 1 /* max */
            dreturn
        end local 3 // boolean isMaxSet
        end local 1 // double max
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            3   14     1       max  D
            6   14     3  isMaxSet  Z
            8   11     4     value  D

  public double min();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 851
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isEmpty:()Z
            ifeq 2
         1: .line 853
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 855
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 1 /* min */
        start local 1 // double min
         3: .line 856
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: double
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* isMinSet */
        start local 3 // boolean isMinSet
         6: .line 858
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int top top int int double[]
      StackMap stack:
         7: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         8: .line 860
            dload 4 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
            iload 3 /* isMinSet */
            ifeq 9
            dload 4 /* value */
            dload 1 /* min */
            invokestatic java.lang.Double.compare:(DD)I
            ifge 11
         9: .line 862
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int double int int double[]
      StackMap stack:
            dload 4 /* value */
            dstore 1 /* min */
        10: .line 863
            iconst_1
            istore 3 /* isMinSet */
        end local 4 // double value
        11: .line 858
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet double int top top int int double[]
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 7
        13: .line 866
            dload 1 /* min */
            dreturn
        end local 3 // boolean isMinSet
        end local 1 // double min
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            3   14     1       min  D
            6   14     3  isMinSet  Z
            8   11     4     value  D

  public org.eclipse.collections.api.set.primitive.DoubleSet freeze();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/DoubleSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 872
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            ifne 2
         1: .line 874
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableDoubleSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableDoubleSetFactory.with:()Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
            areturn
         2: .line 876
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iconst_1
            if_icmpne 4
         3: .line 878
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableDoubleSetFactory;
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.doubleIterator:()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
            invokeinterface org.eclipse.collections.api.iterator.MutableDoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableDoubleSetFactory.with:(D)Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
            areturn
         4: .line 880
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
         5: .line 881
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOneOccupied:I
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet.<init>:([DIII)V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // java.io.ObjectOutput out
         0: .line 887
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 889
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 2 /* zeroToThirtyOne */
        start local 2 // int zeroToThirtyOne
         2: .line 890
            goto 6
         3: .line 892
      StackMap locals: int
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 3 /* value */
        start local 3 // double value
         4: .line 893
            aload 1 /* out */
            dload 3 /* value */
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
         5: .line 894
            iload 2 /* zeroToThirtyOne */
            iconst_1
            dload 3 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 2 /* zeroToThirtyOne */
        end local 3 // double value
         6: .line 890
      StackMap locals:
      StackMap stack:
            iload 2 /* zeroToThirtyOne */
            ifne 3
         7: .line 897
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet java.io.ObjectOutput int top top int int double[]
      StackMap stack:
         8: aload 7
            iload 5
            daload
            dstore 3 /* value */
        start local 3 // double value
         9: .line 899
            dload 3 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
        10: .line 901
            aload 1 /* out */
            dload 3 /* value */
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
        end local 3 // double value
        11: .line 897
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        12: iload 5
            iload 6
            if_icmplt 8
        13: .line 904
            return
        end local 2 // int zeroToThirtyOne
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   14     1              out  Ljava/io/ObjectOutput;
            2   14     2  zeroToThirtyOne  I
            4    6     3            value  D
            9   11     3            value  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // java.io.ObjectInput in
         0: .line 909
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 911
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 913
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readDouble:()D
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
         4: .line 911
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 3
        end local 3 // int i
         6: .line 915
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    7     1    in  Ljava/io/ObjectInput;
            1    7     2  size  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction;)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.DoubleHashSet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction function
         0: .line 920
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 921
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.zeroToThirtyOne:I
            istore 4 /* zeroToThirtyOne */
        start local 4 // int zeroToThirtyOne
         2: .line 922
            goto 6
         3: .line 924
      StackMap locals: java.lang.Object int
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            invokestatic java.lang.Integer.numberOfTrailingZeros:(I)I
            i2d
            dstore 5 /* value */
        start local 5 // double value
         4: .line 925
            aload 2 /* function */
            aload 3 /* result */
            dload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
            astore 3 /* result */
         5: .line 926
            iload 4 /* zeroToThirtyOne */
            iconst_1
            dload 5 /* value */
            d2i
            ishl
            iconst_m1
            ixor
            iand
            istore 4 /* zeroToThirtyOne */
        end local 5 // double value
         6: .line 922
      StackMap locals:
      StackMap stack:
            iload 4 /* zeroToThirtyOne */
            ifne 3
         7: .line 929
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            dup
            astore 9
            arraylength
            istore 8
            iconst_0
            istore 7
            goto 12
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet java.lang.Object org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction java.lang.Object int top top int int double[]
      StackMap stack:
         8: aload 9
            iload 7
            daload
            dstore 5 /* value */
        start local 5 // double value
         9: .line 931
            dload 5 /* value */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 11
        10: .line 933
            aload 2 /* function */
            aload 3 /* result */
            dload 5 /* value */
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
            astore 3 /* result */
        end local 5 // double value
        11: .line 929
      StackMap locals:
      StackMap stack:
            iinc 7 1
      StackMap locals:
      StackMap stack:
        12: iload 7
            iload 8
            if_icmplt 8
        13: .line 936
            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.ObjectDoubleToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   14     1    injectedValue  TT;
            0   14     2         function  Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;
            1   14     3           result  TT;
            2   14     4  zeroToThirtyOne  I
            4    6     5            value  D
            9   11     5            value  D
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.DoubleIterable> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // int size
         0: .line 942
            iload 1 /* size */
            ifgt 2
         1: .line 944
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Size for groups must be positive but was: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* size */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 946
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.empty:()Lorg/eclipse/collections/api/list/MutableList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         3: .line 947
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.notEmpty:()Z
            ifeq 17
         4: .line 949
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            iload 1 /* size */
            if_icmpgt 7
         5: .line 951
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableDoubleSetFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableDoubleSetFactory.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 952
            goto 17
         7: .line 955
      StackMap locals: org.eclipse.collections.api.list.MutableList
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.doubleIterator:()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         8: .line 956
            goto 16
         9: .line 958
      StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableDoubleSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableDoubleSetFactory.empty:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            astore 4 /* batch */
        start local 4 // org.eclipse.collections.api.set.primitive.MutableDoubleSet batch
        10: .line 959
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: goto 14
        12: .line 961
      StackMap locals: org.eclipse.collections.api.set.primitive.MutableDoubleSet int
      StackMap stack:
            aload 4 /* batch */
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            invokeinterface org.eclipse.collections.api.set.primitive.MutableDoubleSet.add:(D)Z
            pop
        13: .line 959
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iload 1 /* size */
            if_icmpge 15
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 12
        end local 5 // int i
        15: .line 963
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            aload 4 /* batch */
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.eclipse.collections.api.set.primitive.MutableDoubleSet batch
        16: .line 956
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 9
        end local 3 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        17: .line 967
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   18     1      size  I
            3   18     2    result  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/DoubleIterable;>;
            8   17     3  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
           10   16     4     batch  Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
           11   15     5         i  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/DoubleIterable;>;
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet newEmpty();
    descriptor: ()Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 977
            new org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.<init>:()V
            areturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  public void compact();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 985
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.size:()I
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.smallestPowerOfTwoGreaterThan:(I)I
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.rehash:(I)V
         1: .line 986
            return
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  private void rehashAndGrow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 990
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.maxOccupiedWithData:()I
            istore 1 /* max */
        start local 1 // int max
         1: .line 991
            iload 1 /* max */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            iconst_1
            iadd
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.smallestPowerOfTwoGreaterThan:(I)I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         2: .line 992
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
            ifle 4
            iload 1 /* max */
            iconst_1
            ishr
            iload 1 /* max */
            iconst_2
            ishr
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
            if_icmpge 4
         3: .line 994
            iload 2 /* newCapacity */
            iconst_1
            ishl
            istore 2 /* newCapacity */
         4: .line 996
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.rehash:(I)V
         5: .line 997
            return
        end local 2 // int newCapacity
        end local 1 // int max
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            1    6     1          max  I
            2    6     2  newCapacity  I

  private void rehash(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // int newCapacity
         0: .line 1001
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 1002
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            astore 3 /* old */
        start local 3 // double[] old
         2: .line 1003
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.allocateTable:(I)V
         3: .line 1004
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithData:I
         4: .line 1005
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.occupiedWithSentinels:I
         5: .line 1007
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 1009
      StackMap locals: int double[] int
      StackMap stack:
            aload 3 /* old */
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1011
            aload 0 /* this */
            aload 3 /* old */
            iload 4 /* i */
            daload
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.add:(D)Z
            pop
         9: .line 1007
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            iload 2 /* oldLength */
            if_icmplt 7
        end local 4 // int i
        11: .line 1014
            return
        end local 3 // double[] old
        end local 2 // int oldLength
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0         this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   12     1  newCapacity  I
            1   12     2    oldLength  I
            2   12     3          old  [D
            6   11     4            i  I
    MethodParameters:
             Name  Flags
      newCapacity  

  protected void allocateTable(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // int sizeToAllocate
         0: .line 1018
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            newarray 7
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
         1: .line 1019
            return
        end local 1 // int sizeToAllocate
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0    2     1  sizeToAllocate  I
    MethodParameters:
                Name  Flags
      sizeToAllocate  

  int probe(double);
    descriptor: (D)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
         0: .line 1024
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.spreadAndMask:(D)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 1025
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 3 /* index */
            daload
            dstore 4 /* valueAtIndex */
        start local 4 // double valueAtIndex
         2: .line 1027
            dload 4 /* valueAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifeq 3
            dload 4 /* valueAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 4
         3: .line 1029
      StackMap locals: int double
      StackMap stack:
            iload 3 /* index */
            ireturn
         4: .line 1032
      StackMap locals:
      StackMap stack:
            dload 4 /* valueAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            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 1033
            iconst_1
            istore 7 /* i */
        start local 7 // int i
         8: goto 20
         9: .line 1035
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            iconst_1
            isub
            iand
            istore 8 /* nextIndex */
        start local 8 // int nextIndex
        10: .line 1036
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 8 /* nextIndex */
            daload
            dstore 4 /* valueAtIndex */
        11: .line 1037
            dload 4 /* valueAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
        12: .line 1039
            iload 8 /* nextIndex */
            ireturn
        13: .line 1041
      StackMap locals: int
      StackMap stack:
            dload 4 /* valueAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 17
        14: .line 1043
            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 1045
      StackMap locals:
      StackMap stack:
            dload 4 /* valueAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 19
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 1047
            iload 8 /* nextIndex */
            istore 6 /* removedIndex */
        end local 8 // int nextIndex
        19: .line 1033
      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 1050
            aload 0 /* this */
            dload 1 /* element */
            iload 6 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.probeTwo:(DI)I
            ireturn
        end local 6 // int removedIndex
        end local 4 // double valueAtIndex
        end local 3 // int index
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   22     1       element  D
            1   22     3         index  I
            2   22     4  valueAtIndex  D
            7   22     6  removedIndex  I
            8   21     7             i  I
           10   19     8     nextIndex  I
    MethodParameters:
         Name  Flags
      element  

  int probeTwo(double, int);
    descriptor: (DI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 1055
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.spreadTwoAndMask:(D)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 1056
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 14
         3: .line 1058
      StackMap locals: int int
      StackMap stack:
            iload 4 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         4: .line 1059
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 6 /* nextIndex */
            daload
            dstore 7 /* valueAtIndex */
        start local 7 // double valueAtIndex
         5: .line 1060
            dload 7 /* valueAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
         6: .line 1062
            iload 6 /* nextIndex */
            ireturn
         7: .line 1064
      StackMap locals: int double
      StackMap stack:
            dload 7 /* valueAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 11
         8: .line 1066
            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 1068
      StackMap locals:
      StackMap stack:
            dload 7 /* valueAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 1070
            iload 6 /* nextIndex */
            istore 3 /* removedIndex */
        end local 7 // double valueAtIndex
        end local 6 // int nextIndex
        13: .line 1056
      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 1073
            aload 0 /* this */
            dload 1 /* element */
            iload 3 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.probeThree:(DI)I
            ireturn
        end local 4 // int index
        end local 3 // int removedIndex
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   16     1       element  D
            0   16     3  removedIndex  I
            1   16     4         index  I
            2   15     5             i  I
            4   13     6     nextIndex  I
            5   13     7  valueAtIndex  D
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int probeThree(double, int);
    descriptor: (DI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 1078
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadOne:(D)J
            invokestatic java.lang.Long.reverse:(J)J
            l2i
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
         1: .line 1079
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadTwo:(D)J
            invokestatic java.lang.Long.reverse:(J)J
            l2i
            iconst_1
            ior
            istore 5 /* spreadTwo */
        start local 5 // int spreadTwo
         2: .line 1083
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextIndex */
            iload 5 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.mask:(I)I
            istore 4 /* nextIndex */
         3: .line 1084
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iload 4 /* nextIndex */
            daload
            dstore 6 /* valueAtIndex */
        start local 6 // double valueAtIndex
         4: .line 1085
            dload 6 /* valueAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 6
         5: .line 1087
            iload 4 /* nextIndex */
            ireturn
         6: .line 1089
      StackMap locals: double
      StackMap stack:
            dload 6 /* valueAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 10
         7: .line 1091
            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 1093
      StackMap locals:
      StackMap stack:
            dload 6 /* valueAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 2
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 1095
            iload 4 /* nextIndex */
            istore 3 /* removedIndex */
        end local 6 // double valueAtIndex
        12: .line 1081
            goto 2
        end local 5 // int spreadTwo
        end local 4 // int nextIndex
        end local 3 // int removedIndex
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            0   13     1       element  D
            0   13     3  removedIndex  I
            1   13     4     nextIndex  I
            2   13     5     spreadTwo  I
            4   12     6  valueAtIndex  D
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

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

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

  private void copyTable();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 1120
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.copyOnWrite:Z
         1: .line 1121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            newarray 7
            astore 1 /* copy */
        start local 1 // double[] copy
         2: .line 1122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            iconst_0
            aload 1 /* copy */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 1123
            aload 0 /* this */
            aload 1 /* copy */
            putfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
         4: .line 1124
            return
        end local 1 // double[] copy
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            2    5     1  copy  [D

  private int maxOccupiedWithData();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
         0: .line 1128
            aload 0 /* this */
            getfield org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.table:[D
            arraylength
            iconst_1
            ishr
            ireturn
        end local 0 // org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;

  private static boolean isNonSentinel(double);
    descriptor: (D)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double value
         0: .line 1133
            dload 0 /* value */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifeq 1
            dload 0 /* value */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  value  D
    MethodParameters:
       Name  Flags
      value  

  public org.eclipse.collections.api.iterator.DoubleIterator doubleIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/DoubleIterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.doubleIterator:()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.ImmutableDoubleCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/ImmutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableDoubleSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection with(double);
    descriptor: (D)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.with:(D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet with(double);
    descriptor: (D)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.with:(D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.DoubleHashSet.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet withAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    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.DoubleHashSet.withAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    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.DoubleHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.DoubleHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.DoubleSet select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/set/primitive/DoubleSet;
    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.DoubleHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet select(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    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.DoubleHashSet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.DoubleHashSet.withoutAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet withoutAll(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    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.DoubleHashSet.withoutAll:(Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable collect(org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)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.DoubleToObjectFunction
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.collect:(Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.asSynchronized:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection tap(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableDoubleSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/DoubleIterable;
    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.DoubleHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    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.DoubleHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.DoubleSet reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/set/primitive/DoubleSet;
    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.DoubleHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet reject(org.eclipse.collections.api.block.predicate.primitive.DoublePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    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.DoubleHashSet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.asUnmodifiable:()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.newEmpty:()Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.newEmpty:()Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection without(double);
    descriptor: (D)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.without:(D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet without(double);
    descriptor: (D)Lorg/eclipse/collections/api/set/primitive/MutableDoubleSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            dload 1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet.without:(D)Lorg/eclipse/collections/impl/set/mutable/primitive/DoubleHashSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 1
           -567445985: 1
              default: 2
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "contains"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_0
            istore 2
      StackMap locals:
      StackMap stack:
         2: iload 2
            lookupswitch { // 1
                    0: 3
              default: 4
          }
      StackMap locals:
      StackMap stack:
         3: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 9
            if_icmpne 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/predicate/primitive/DoublePredicate"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "accept"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(D)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/DoubleIterable"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(D)Z"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.set.primitive.DoubleSet
            invokedynamic accept(Lorg/eclipse/collections/api/set/primitive/DoubleSet;)Lorg/eclipse/collections/api/block/predicate/primitive/DoublePredicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (D)Z
                  org/eclipse/collections/api/DoubleIterable.contains(D)Z (9 itf)
                  (D)Z
                  1
            areturn
      StackMap locals:
      StackMap stack:
         4: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "DoubleHashSet.java"
NestMembers:
  org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet  org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet$InternalDoubleIterator  org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$InternalDoubleIterator
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private final ImmutableDoubleHashSet = org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$ImmutableDoubleHashSet of org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet
  private InternalDoubleIterator = org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet$InternalDoubleIterator of org.eclipse.collections.impl.set.mutable.primitive.DoubleHashSet