public class org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap extends org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap implements org.eclipse.collections.api.map.primitive.MutableDoubleIntMap, java.io.Externalizable, org.eclipse.collections.impl.map.mutable.primitive.MutableDoubleKeysMap
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  super_class: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap
{
  private static final int EMPTY_VALUE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

  private static final double REMOVED_KEY;
    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 static final int DEFAULT_INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

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

  private int[] values;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

  private org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues sentinelValues;
    descriptor: Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
    flags: (0x0002) ACC_PRIVATE

  private boolean copyKeysOnWrite;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int initialCapacity
         0: .line 90
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap.<init>:()V
         1: .line 92
            iload 1 /* initialCapacity */
            ifge 3
         2: .line 94
            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 96
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* initialCapacity */
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.smallestPowerOfTwoGreaterThan:(I)I
            istore 2 /* capacity */
        start local 2 // int capacity
         4: .line 97
            aload 0 /* this */
            iload 2 /* capacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.allocateTable:(I)V
         5: .line 98
            return
        end local 2 // int capacity
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    6     1  initialCapacity  I
            4    6     2         capacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(org.eclipse.collections.api.map.primitive.DoubleIntMap);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.map.primitive.DoubleIntMap map
         0: .line 100
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap.<init>:()V
         1: .line 102
            aload 1 /* map */
            instanceof org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            ifeq 9
            aload 1 /* map */
            checkcast org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
            ifne 9
         2: .line 104
            aload 1 /* map */
            checkcast org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            astore 2 /* hashMap */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap hashMap
         3: .line 105
            aload 0 /* this */
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
         4: .line 106
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         5: .line 108
            aload 0 /* this */
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.copy:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         6: .line 110
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap org.eclipse.collections.api.map.primitive.DoubleIntMap org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
      StackMap stack:
            aload 0 /* this */
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            invokestatic java.util.Arrays.copyOf:([DI)[D
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
         7: .line 111
            aload 0 /* this */
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            aload 2 /* hashMap */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            arraylength
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap hashMap
         8: .line 112
            goto 12
         9: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* map */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.size:()I
            bipush 8
            invokestatic java.lang.Math.max:(II)I
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.smallestPowerOfTwoGreaterThan:(I)I
            istore 2 /* capacity */
        start local 2 // int capacity
        10: .line 116
            aload 0 /* this */
            iload 2 /* capacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.allocateTable:(I)V
        11: .line 117
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.putAll:(Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;)V
        end local 2 // int capacity
        12: .line 119
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.map.primitive.DoubleIntMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1       map  Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
            3    8     2   hashMap  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
           10   12     2  capacity  I
    MethodParameters:
      Name  Flags
      map   

  public static org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap newWithKeysValues(double, int);
    descriptor: (DI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double key1
        start local 2 // int value1
         0: .line 123
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            iconst_1
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:(I)V
            dload 0 /* key1 */
            iload 2 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.withKeyValue:(DI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
        end local 2 // int value1
        end local 0 // double key1
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    key1  D
            0    1     2  value1  I
    MethodParameters:
        Name  Flags
      key1    
      value1  

  public static org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap newWithKeysValues(double, int, double, int);
    descriptor: (DIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // double key1
        start local 2 // int value1
        start local 3 // double key2
        start local 5 // int value2
         0: .line 128
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            iconst_2
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:(I)V
            dload 0 /* key1 */
            iload 2 /* value1 */
            dload 3 /* key2 */
            iload 5 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.withKeysValues:(DIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
        end local 5 // int value2
        end local 3 // double key2
        end local 2 // int value1
        end local 0 // double key1
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    key1  D
            0    1     2  value1  I
            0    1     3    key2  D
            0    1     5  value2  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public static org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap newWithKeysValues(double, int, double, int, double, int);
    descriptor: (DIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=10, locals=9, args_size=6
        start local 0 // double key1
        start local 2 // int value1
        start local 3 // double key2
        start local 5 // int value2
        start local 6 // double key3
        start local 8 // int value3
         0: .line 133
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            iconst_3
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:(I)V
            dload 0 /* key1 */
            iload 2 /* value1 */
            dload 3 /* key2 */
            iload 5 /* value2 */
            dload 6 /* key3 */
            iload 8 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.withKeysValues:(DIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
        end local 8 // int value3
        end local 6 // double key3
        end local 5 // int value2
        end local 3 // double key2
        end local 2 // int value1
        end local 0 // double key1
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    key1  D
            0    1     2  value1  I
            0    1     3    key2  D
            0    1     5  value2  I
            0    1     6    key3  D
            0    1     8  value3  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public static org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap newWithKeysValues(double, int, double, int, double, int, double, int);
    descriptor: (DIDIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=13, locals=12, args_size=8
        start local 0 // double key1
        start local 2 // int value1
        start local 3 // double key2
        start local 5 // int value2
        start local 6 // double key3
        start local 8 // int value3
        start local 9 // double key4
        start local 11 // int value4
         0: .line 138
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            iconst_4
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:(I)V
            dload 0 /* key1 */
            iload 2 /* value1 */
            dload 3 /* key2 */
            iload 5 /* value2 */
            dload 6 /* key3 */
            iload 8 /* value3 */
            dload 9 /* key4 */
            iload 11 /* value4 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.withKeysValues:(DIDIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
        end local 11 // int value4
        end local 9 // double key4
        end local 8 // int value3
        end local 6 // double key3
        end local 5 // int value2
        end local 3 // double key2
        end local 2 // int value1
        end local 0 // double key1
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    key1  D
            0    1     2  value1  I
            0    1     3    key2  D
            0    1     5  value2  I
            0    1     6    key3  D
            0    1     8  value3  I
            0    1     9    key4  D
            0    1    11  value4  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  

  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int n
         0: .line 143
            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.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    3     1     n  I
    MethodParameters:
      Name  Flags
      n     

  protected int getOccupiedWithData();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 149
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  protected org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues getSentinelValues();
    descriptor: ()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 155
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  protected void setSentinelValuesNull();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 161
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         1: .line 162
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  protected int getEmptyValue();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 167
            iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  protected int getTableSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 173
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            arraylength
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  protected int getValueAtIndex(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int index
         0: .line 179
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // java.lang.Object obj
         0: .line 185
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 187
            iconst_1
            ireturn
         2: .line 190
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.map.primitive.DoubleIntMap
            ifne 4
         3: .line 192
            iconst_0
            ireturn
         4: .line 195
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.map.primitive.DoubleIntMap
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.map.primitive.DoubleIntMap other
         5: .line 197
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.size:()I
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.size:()I
            if_icmpeq 7
         6: .line 199
            iconst_0
            ireturn
         7: .line 202
      StackMap locals: org.eclipse.collections.api.map.primitive.DoubleIntMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 10
         8: .line 204
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.containsKey:(D)Z
            ifne 9
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.containsKey:(D)Z
            ifeq 14
         9: .line 206
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        10: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 12
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.containsKey:(D)Z
            ifeq 11
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.getOrThrow:(D)I
            if_icmpeq 12
        11: .line 213
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        12: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 14
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.containsKey:(D)Z
            ifeq 13
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.getOrThrow:(D)I
            if_icmpeq 14
        13: .line 218
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        14: .line 221
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 20
        16: .line 223
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            dstore 4 /* key */
        start local 4 // double key
        17: .line 224
            dload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 19
            aload 2 /* other */
            dload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.containsKey:(D)Z
            ifeq 18
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            aload 2 /* other */
            dload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.getOrThrow:(D)I
            if_icmpeq 19
        18: .line 226
      StackMap locals: double
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // double key
        19: .line 221
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 16
        end local 3 // int i
        21: .line 229
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.map.primitive.DoubleIntMap other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   22     1    obj  Ljava/lang/Object;
            5   22     2  other  Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
           15   21     3      i  I
           17   19     4    key  D
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 235
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 237
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 239
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 241
            iload 1 /* result */
            dconst_0
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dconst_0
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ixor
            iadd
            istore 1 /* result */
         4: .line 243
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 245
            iload 1 /* result */
            dconst_1
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            dconst_1
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ixor
            iadd
            istore 1 /* result */
         6: .line 248
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         7: goto 11
         8: .line 250
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 252
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 2 /* i */
            iaload
            ixor
            iadd
            istore 1 /* result */
        10: .line 248
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 2 // int i
        12: .line 256
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            1   13     1  result  I
            7   12     2       i  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 262
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* appendable */
        start local 1 // java.lang.StringBuilder appendable
         1: .line 264
            aload 1 /* appendable */
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 266
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         3: .line 268
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 12
         4: .line 270
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         5: .line 272
            aload 1 /* appendable */
            dconst_0
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         6: .line 273
            iconst_0
            istore 2 /* first */
         7: .line 275
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 12
         8: .line 277
            iload 2 /* first */
            ifne 10
         9: .line 279
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 281
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            dconst_1
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        11: .line 282
            iconst_0
            istore 2 /* first */
        12: .line 285
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 21
        14: .line 287
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            dstore 4 /* key */
        start local 4 // double key
        15: .line 288
            dload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 20
        16: .line 290
            iload 2 /* first */
            ifne 18
        17: .line 292
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        18: .line 294
      StackMap locals: double
      StackMap stack:
            aload 1 /* appendable */
            dload 4 /* key */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        19: .line 295
            iconst_0
            istore 2 /* first */
        end local 4 // double key
        20: .line 285
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 14
        end local 3 // int i
        22: .line 298
            aload 1 /* appendable */
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 300
            aload 1 /* appendable */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // boolean first
        end local 1 // java.lang.StringBuilder appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            1   24     1  appendable  Ljava/lang/StringBuilder;
            3   24     2       first  Z
           13   22     3           i  I
           15   20     4         key  D

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

  public <V> V injectInto(V, org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction<? super V, ? extends V>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
         0: .line 312
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 314
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 316
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 318
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction.valueOf:(Ljava/lang/Object;I)Ljava/lang/Object;
            astore 3 /* result */
         4: .line 320
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 322
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction.valueOf:(Ljava/lang/Object;I)Ljava/lang/Object;
            astore 3 /* result */
         6: .line 325
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 327
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 329
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction.valueOf:(Ljava/lang/Object;I)Ljava/lang/Object;
            astore 3 /* result */
        10: .line 325
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 333
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1  injectedValue  TV;
            0   13     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TV;+TV;>;
            1   13     3         result  TV;
            7   12     4              i  I
    Signature: <V:Ljava/lang/Object;>(TV;Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToObjectFunction<-TV;+TV;>;)TV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 339
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         1: .line 340
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
         2: .line 341
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
         3: .line 342
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeysOnWrite:Z
            ifeq 5
         4: .line 344
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeys:()V
         5: .line 346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            dconst_0
            invokestatic java.util.Arrays.fill:([DD)V
         6: .line 347
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iconst_0
            invokestatic java.util.Arrays.fill:([II)V
         7: .line 348
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  public void put(double, int);
    descriptor: (DI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int value
         0: .line 353
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 3
         1: .line 355
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.putForEmptySentinel:(I)V
         2: .line 356
            return
         3: .line 359
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 6
         4: .line 361
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.putForRemovedSentinel:(I)V
         5: .line 362
            return
         6: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
         7: .line 366
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dstore 5 /* keyAtIndex */
        start local 5 // double keyAtIndex
         8: .line 367
            dload 5 /* keyAtIndex */
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 11
         9: .line 369
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iload 3 /* value */
            iastore
        10: .line 370
            goto 12
        11: .line 373
      StackMap locals: int double
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        12: .line 375
      StackMap locals:
      StackMap stack:
            return
        end local 5 // double keyAtIndex
        end local 4 // int index
        end local 3 // int value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1         key  D
            0   13     3       value  I
            7   13     4       index  I
            8   13     5  keyAtIndex  D
    MethodParameters:
       Name  Flags
      key    
      value  

  private void putForRemovedSentinel(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int value
         0: .line 379
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 2
         1: .line 381
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         2: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
         3: .line 384
            return
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    4     1  value  I
    MethodParameters:
       Name  Flags
      value  

  private void putForEmptySentinel(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int value
         0: .line 388
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 2
         1: .line 390
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         2: .line 392
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         3: .line 393
            return
        end local 1 // int value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    4     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public void putAll(org.eclipse.collections.api.map.primitive.DoubleIntMap);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.map.primitive.DoubleIntMap map
         0: .line 398
            aload 1 /* map */
            aload 0 /* this */
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
              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:
                  (DI)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.put(DI)V (5)
                  (DI)V
                  1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleIntMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
         1: .line 399
            return
        end local 1 // org.eclipse.collections.api.map.primitive.DoubleIntMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1   map  Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
    MethodParameters:
      Name  Flags
      map   

  public void updateValues(org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToIntFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction function
         0: .line 404
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 406
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 408
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 1 /* function */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction.valueOf:(DI)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         3: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 412
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 1 /* function */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction.valueOf:(DI)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
         5: .line 415
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 417
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 419
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 2 /* i */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 2 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction.valueOf:(DI)I
            iastore
         9: .line 415
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 422
            return
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleIntToIntFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   12     1  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleIntToIntFunction;
            6   11     2         i  I
    MethodParameters:
          Name  Flags
      function  

  public void removeKey(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 427
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 5
         1: .line 429
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 431
      StackMap locals:
      StackMap stack:
            return
         3: .line 433
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeEmptyKey:()V
         4: .line 434
            return
         5: .line 436
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 10
         6: .line 438
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 7
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 8
         7: .line 440
      StackMap locals:
      StackMap stack:
            return
         8: .line 442
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeRemovedKey:()V
         9: .line 443
            return
        10: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 3 /* index */
        start local 3 // int index
        11: .line 446
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
        12: .line 448
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeKeyAtIndex:(I)V
        13: .line 450
      StackMap locals: int
      StackMap stack:
            return
        end local 3 // int index
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   14     1    key  D
           11   14     3  index  I
    MethodParameters:
      Name  Flags
      key   

  public void remove(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 455
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeKey:(D)V
         1: .line 456
            return
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1   key  D
    MethodParameters:
      Name  Flags
      key   

  public int removeKeyIfAbsent(double, int);
    descriptor: (DI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int value
         0: .line 461
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 6
         1: .line 463
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 465
      StackMap locals:
      StackMap stack:
            iload 3 /* value */
            ireturn
         3: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            istore 4 /* oldValue */
        start local 4 // int oldValue
         4: .line 468
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeEmptyKey:()V
         5: .line 469
            iload 4 /* oldValue */
            ireturn
        end local 4 // int oldValue
         6: .line 471
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 12
         7: .line 473
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 8
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 9
         8: .line 475
      StackMap locals:
      StackMap stack:
            iload 3 /* value */
            ireturn
         9: .line 477
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            istore 4 /* oldValue */
        start local 4 // int oldValue
        10: .line 478
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeRemovedKey:()V
        11: .line 479
            iload 4 /* oldValue */
            ireturn
        end local 4 // int oldValue
        12: .line 481
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        13: .line 482
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 17
        14: .line 484
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            istore 5 /* oldValue */
        start local 5 // int oldValue
        15: .line 485
            aload 0 /* this */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeKeyAtIndex:(I)V
        16: .line 486
            iload 5 /* oldValue */
            ireturn
        end local 5 // int oldValue
        17: .line 488
      StackMap locals: int
      StackMap stack:
            iload 3 /* value */
            ireturn
        end local 4 // int index
        end local 3 // int value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   18     1       key  D
            0   18     3     value  I
            4    6     4  oldValue  I
           10   12     4  oldValue  I
           13   18     4     index  I
           15   17     5  oldValue  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int getIfAbsentPut(double, int);
    descriptor: (DI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int value
         0: .line 494
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 9
         1: .line 496
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 498
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 499
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         4: .line 500
            iload 3 /* value */
            ireturn
         5: .line 502
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         6: .line 504
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         7: .line 506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         8: .line 507
            iload 3 /* value */
            ireturn
         9: .line 509
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 18
        10: .line 511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 14
        11: .line 513
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        12: .line 514
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        13: .line 515
            iload 3 /* value */
            ireturn
        14: .line 517
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 16
        15: .line 519
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        16: .line 521
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        17: .line 522
            iload 3 /* value */
            ireturn
        18: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        19: .line 525
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 21
        20: .line 527
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
        21: .line 529
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        22: .line 530
            iload 3 /* value */
            ireturn
        end local 4 // int index
        end local 3 // int value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   23     1    key  D
            0   23     3  value  I
           19   23     4  index  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int getIfAbsentPut(double, org.eclipse.collections.api.block.function.primitive.IntFunction0);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.primitive.IntFunction0 function
         0: .line 536
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 11
         1: .line 538
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 540
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 4 /* value */
        start local 4 // int value
         3: .line 541
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 542
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         5: .line 543
            iload 4 /* value */
            ireturn
        end local 4 // int value
         6: .line 545
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 547
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 549
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 4 /* value */
        start local 4 // int value
         9: .line 550
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
        10: .line 551
            iload 4 /* value */
            ireturn
        end local 4 // int value
        11: .line 553
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 22
        12: .line 555
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 557
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 4 /* value */
        start local 4 // int value
        14: .line 558
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 559
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        16: .line 560
            iload 4 /* value */
            ireturn
        end local 4 // int value
        17: .line 562
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 564
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 566
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 4 /* value */
        start local 4 // int value
        20: .line 567
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        21: .line 568
            iload 4 /* value */
            ireturn
        end local 4 // int value
        22: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        23: .line 571
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 25
        24: .line 573
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
        25: .line 575
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 5 /* value */
        start local 5 // int value
        26: .line 576
            aload 0 /* this */
            dload 1 /* key */
            iload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        27: .line 577
            iload 5 /* value */
            ireturn
        end local 5 // int value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.primitive.IntFunction0 function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   28     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   28     1       key  D
            0   28     3  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction0;
            3    6     4     value  I
            9   11     4     value  I
           14   17     4     value  I
           20   22     4     value  I
           23   28     4     index  I
           26   28     5     value  I
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> int getIfAbsentPutWith(double, org.eclipse.collections.api.block.function.primitive.IntFunction<? super P>, );
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/IntFunction;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        start local 4 // java.lang.Object parameter
         0: .line 583
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 11
         1: .line 585
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 587
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 5 /* value */
        start local 5 // int value
         3: .line 588
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 589
            aload 0 /* this */
            iload 5 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         5: .line 590
            iload 5 /* value */
            ireturn
        end local 5 // int value
         6: .line 592
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 594
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 596
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 5 /* value */
        start local 5 // int value
         9: .line 597
            aload 0 /* this */
            iload 5 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
        10: .line 598
            iload 5 /* value */
            ireturn
        end local 5 // int value
        11: .line 600
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 22
        12: .line 602
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 604
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 5 /* value */
        start local 5 // int value
        14: .line 605
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 606
            aload 0 /* this */
            iload 5 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        16: .line 607
            iload 5 /* value */
            ireturn
        end local 5 // int value
        17: .line 609
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 611
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 613
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 5 /* value */
        start local 5 // int value
        20: .line 614
            aload 0 /* this */
            iload 5 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        21: .line 615
            iload 5 /* value */
            ireturn
        end local 5 // int value
        22: .line 617
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 5 /* index */
        start local 5 // int index
        23: .line 618
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 5 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 25
        24: .line 620
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 5 /* index */
            iaload
            ireturn
        25: .line 622
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 6 /* value */
        start local 6 // int value
        26: .line 623
            aload 0 /* this */
            dload 1 /* key */
            iload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        27: .line 624
            iload 6 /* value */
            ireturn
        end local 6 // int value
        end local 5 // int index
        end local 4 // java.lang.Object parameter
        end local 3 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   28     1        key  D
            0   28     3   function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TP;>;
            0   28     4  parameter  TP;
            3    6     5      value  I
            9   11     5      value  I
           14   17     5      value  I
           20   22     5      value  I
           23   28     5      index  I
           26   28     6      value  I
    Signature: <P:Ljava/lang/Object;>(DLorg/eclipse/collections/api/block/function/primitive/IntFunction<-TP;>;TP;)I
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public int getIfAbsentPutWithKey(double, org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction function
         0: .line 630
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 11
         1: .line 632
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 634
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction.valueOf:(D)I
            istore 4 /* value */
        start local 4 // int value
         3: .line 635
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 636
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         5: .line 637
            iload 4 /* value */
            ireturn
        end local 4 // int value
         6: .line 639
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 641
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 643
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction.valueOf:(D)I
            istore 4 /* value */
        start local 4 // int value
         9: .line 644
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
        10: .line 645
            iload 4 /* value */
            ireturn
        end local 4 // int value
        11: .line 647
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 22
        12: .line 649
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 651
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction.valueOf:(D)I
            istore 4 /* value */
        start local 4 // int value
        14: .line 652
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 653
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        16: .line 654
            iload 4 /* value */
            ireturn
        end local 4 // int value
        17: .line 656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 658
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 660
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction.valueOf:(D)I
            istore 4 /* value */
        start local 4 // int value
        20: .line 661
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        21: .line 662
            iload 4 /* value */
            ireturn
        end local 4 // int value
        22: .line 664
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        23: .line 665
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 25
        24: .line 667
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
        25: .line 669
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction.valueOf:(D)I
            istore 5 /* value */
        start local 5 // int value
        26: .line 670
            aload 0 /* this */
            dload 1 /* key */
            iload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        27: .line 671
            iload 5 /* value */
            ireturn
        end local 5 // int value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   28     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   28     1       key  D
            0   28     3  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToIntFunction;
            3    6     4     value  I
            9   11     4     value  I
           14   17     4     value  I
           20   22     4     value  I
           23   28     4     index  I
           26   28     5     value  I
    MethodParameters:
          Name  Flags
      key       
      function  

  public int addToValue(double, int);
    descriptor: (DI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int toBeAdded
         0: .line 677
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 10
         1: .line 679
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 681
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 682
            aload 0 /* this */
            iload 3 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         4: .line 683
            goto 9
         5: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 686
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            iload 3 /* toBeAdded */
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         7: .line 687
            goto 9
         8: .line 690
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         9: .line 692
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
        10: .line 694
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 20
        11: .line 696
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 15
        12: .line 698
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        13: .line 699
            aload 0 /* this */
            iload 3 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        14: .line 700
            goto 19
        15: .line 701
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 18
        16: .line 703
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            iload 3 /* toBeAdded */
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
        17: .line 704
            goto 19
        18: .line 707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        19: .line 709
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        20: .line 711
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        21: .line 712
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 24
        22: .line 714
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            dup2
            iaload
            iload 3 /* toBeAdded */
            iadd
            iastore
        23: .line 715
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
        24: .line 717
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* toBeAdded */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        25: .line 718
            iload 3 /* toBeAdded */
            ireturn
        end local 4 // int index
        end local 3 // int toBeAdded
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   26     1        key  D
            0   26     3  toBeAdded  I
           21   26     4      index  I
    MethodParameters:
           Name  Flags
      key        
      toBeAdded  

  private void addKeyValueAtIndex(double, int, int);
    descriptor: (DII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int value
        start local 4 // int index
         0: .line 723
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 2
         1: .line 725
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
         2: .line 727
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeysOnWrite:Z
            ifeq 4
         3: .line 729
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeys:()V
         4: .line 731
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            dload 1 /* key */
            dastore
         5: .line 732
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iload 3 /* value */
            iastore
         6: .line 733
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
         7: .line 734
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
            iadd
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.maxOccupiedWithData:()I
            if_icmple 9
         8: .line 736
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.rehashAndGrow:()V
         9: .line 738
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int index
        end local 3 // int value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   10     1    key  D
            0   10     3  value  I
            0   10     4  index  I
    MethodParameters:
       Name  Flags
      key    
      value  
      index  

  private void removeKeyAtIndex(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int index
         0: .line 742
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeysOnWrite:Z
            ifeq 2
         1: .line 744
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeys:()V
         2: .line 746
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 1 /* index */
            dconst_1
            dastore
         3: .line 747
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 1 /* index */
            iconst_0
            iastore
         4: .line 748
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
         5: .line 749
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
         6: .line 750
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    7     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private void copyKeys();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 754
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            newarray 7
            astore 1 /* copy */
        start local 1 // double[] copy
         1: .line 755
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iconst_0
            aload 1 /* copy */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 756
            aload 0 /* this */
            aload 1 /* copy */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
         3: .line 757
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.copyKeysOnWrite:Z
         4: .line 758
            return
        end local 1 // double[] copy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            1    5     1  copy  [D

  public int updateValue(double, int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (DILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int initialValueIfAbsent
        start local 4 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
         0: .line 763
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 10
         1: .line 765
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 767
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 768
            aload 0 /* this */
            aload 4 /* function */
            iload 3 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         4: .line 769
            goto 9
         5: .line 770
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 772
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         7: .line 773
            goto 9
         8: .line 776
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* function */
            iload 3 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addEmptyKeyValue:(I)V
         9: .line 778
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
        10: .line 780
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 20
        11: .line 782
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 15
        12: .line 784
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        13: .line 785
            aload 0 /* this */
            aload 4 /* function */
            iload 3 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        14: .line 786
            goto 19
        15: .line 787
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 18
        16: .line 789
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
        17: .line 790
            goto 19
        18: .line 793
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* function */
            iload 3 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addRemovedKeyValue:(I)V
        19: .line 795
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        20: .line 797
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 5 /* index */
        start local 5 // int index
        21: .line 798
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 5 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 24
        22: .line 800
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 5 /* index */
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 5 /* index */
            iaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            iastore
        23: .line 801
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 5 /* index */
            iaload
            ireturn
        24: .line 803
      StackMap locals: int
      StackMap stack:
            aload 4 /* function */
            iload 3 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 6 /* value */
        start local 6 // int value
        25: .line 804
            aload 0 /* this */
            dload 1 /* key */
            iload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.addKeyValueAtIndex:(DII)V
        26: .line 805
            iload 6 /* value */
            ireturn
        end local 6 // int value
        end local 5 // int index
        end local 4 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
        end local 3 // int initialValueIfAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   27     0                  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   27     1                   key  D
            0   27     3  initialValueIfAbsent  I
            0   27     4              function  Lorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;
           21   27     5                 index  I
           25   27     6                 value  I
    MethodParameters:
                      Name  Flags
      key                   
      initialValueIfAbsent  
      function              

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withKeyValue(double, int);
    descriptor: (DI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key1
        start local 3 // int value1
         0: .line 811
            aload 0 /* this */
            dload 1 /* key1 */
            iload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         1: .line 812
            aload 0 /* this */
            areturn
        end local 3 // int value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1    key1  D
            0    2     3  value1  I
    MethodParameters:
        Name  Flags
      key1    
      value1  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withKeysValues(double, int, double, int);
    descriptor: (DIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key1
        start local 3 // int value1
        start local 4 // double key2
        start local 6 // int value2
         0: .line 817
            aload 0 /* this */
            dload 1 /* key1 */
            iload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         1: .line 818
            aload 0 /* this */
            dload 4 /* key2 */
            iload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         2: .line 819
            aload 0 /* this */
            areturn
        end local 6 // int value2
        end local 4 // double key2
        end local 3 // int value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    3     1    key1  D
            0    3     3  value1  I
            0    3     4    key2  D
            0    3     6  value2  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withKeysValues(double, int, double, int, double, int);
    descriptor: (DIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=7
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key1
        start local 3 // int value1
        start local 4 // double key2
        start local 6 // int value2
        start local 7 // double key3
        start local 9 // int value3
         0: .line 824
            aload 0 /* this */
            dload 1 /* key1 */
            iload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         1: .line 825
            aload 0 /* this */
            dload 4 /* key2 */
            iload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         2: .line 826
            aload 0 /* this */
            dload 7 /* key3 */
            iload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         3: .line 827
            aload 0 /* this */
            areturn
        end local 9 // int value3
        end local 7 // double key3
        end local 6 // int value2
        end local 4 // double key2
        end local 3 // int value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    4     1    key1  D
            0    4     3  value1  I
            0    4     4    key2  D
            0    4     6  value2  I
            0    4     7    key3  D
            0    4     9  value3  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withKeysValues(double, int, double, int, double, int, double, int);
    descriptor: (DIDIDIDI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=13, args_size=9
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key1
        start local 3 // int value1
        start local 4 // double key2
        start local 6 // int value2
        start local 7 // double key3
        start local 9 // int value3
        start local 10 // double key4
        start local 12 // int value4
         0: .line 832
            aload 0 /* this */
            dload 1 /* key1 */
            iload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         1: .line 833
            aload 0 /* this */
            dload 4 /* key2 */
            iload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         2: .line 834
            aload 0 /* this */
            dload 7 /* key3 */
            iload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         3: .line 835
            aload 0 /* this */
            dload 10 /* key4 */
            iload 12 /* value4 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         4: .line 836
            aload 0 /* this */
            areturn
        end local 12 // int value4
        end local 10 // double key4
        end local 9 // int value3
        end local 7 // double key3
        end local 6 // int value2
        end local 4 // double key2
        end local 3 // int value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    5     1    key1  D
            0    5     3  value1  I
            0    5     4    key2  D
            0    5     6  value2  I
            0    5     7    key3  D
            0    5     9  value3  I
            0    5    10    key4  D
            0    5    12  value4  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withoutKey(double);
    descriptor: (D)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 842
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.removeKey:(D)V
         1: .line 843
            aload 0 /* this */
            areturn
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1   key  D
    MethodParameters:
      Name  Flags
      key   

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap withoutAllKeys(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.DoubleIterable keys
         0: .line 849
            aload 1 /* keys */
            aload 0 /* this */
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
              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)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.removeKey(D)V (5)
                  (D)V
                  1
            invokeinterface org.eclipse.collections.api.DoubleIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
         1: .line 850
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.DoubleIterable keys
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1  keys  Lorg/eclipse/collections/api/DoubleIterable;
    MethodParameters:
      Name  Flags
      keys  

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

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

  public org.eclipse.collections.api.map.primitive.ImmutableDoubleIntMap toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableDoubleIntMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 868
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleIntMaps.immutable:Lorg/eclipse/collections/api/factory/map/primitive/ImmutableDoubleIntMapFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.map.primitive.ImmutableDoubleIntMapFactory.ofAll:(Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;)Lorg/eclipse/collections/api/map/primitive/ImmutableDoubleIntMap;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  public int get(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 874
            aload 0 /* this */
            dload 1 /* key */
            iconst_0
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.getIfAbsent:(DI)I
            ireturn
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    1     1   key  D
    MethodParameters:
      Name  Flags
      key   

  public int getIfAbsent(double, int);
    descriptor: (DI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int ifAbsent
         0: .line 880
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifne 1
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 2
         1: .line 882
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* ifAbsent */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.getForSentinel:(DI)I
            ireturn
         2: .line 884
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
            ifne 4
         3: .line 886
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* ifAbsent */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.fastGetIfAbsent:(DI)I
            ireturn
         4: .line 888
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* ifAbsent */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.slowGetIfAbsent:(DI)I
            ireturn
        end local 3 // int ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    5     1       key  D
            0    5     3  ifAbsent  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int getForSentinel(double, int);
    descriptor: (DI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int ifAbsent
         0: .line 893
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 4
         1: .line 895
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 897
      StackMap locals:
      StackMap stack:
            iload 3 /* ifAbsent */
            ireturn
         3: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         4: .line 901
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 6
         5: .line 903
      StackMap locals:
      StackMap stack:
            iload 3 /* ifAbsent */
            ireturn
         6: .line 905
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        end local 3 // int ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    7     1       key  D
            0    7     3  ifAbsent  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int slowGetIfAbsent(double, int);
    descriptor: (DI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int ifAbsent
         0: .line 910
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 911
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 3
         2: .line 913
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
         3: .line 915
      StackMap locals: int
      StackMap stack:
            iload 3 /* ifAbsent */
            ireturn
        end local 4 // int index
        end local 3 // int ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    4     1       key  D
            0    4     3  ifAbsent  I
            1    4     4     index  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int fastGetIfAbsent(double, int);
    descriptor: (DI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int ifAbsent
         0: .line 920
            aload 0 /* this */
            dload 1 /* key */
            d2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.mask:(I)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 922
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 10
         3: .line 924
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dstore 6 /* keyAtIndex */
        start local 6 // double keyAtIndex
         4: .line 925
            dload 6 /* keyAtIndex */
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 6
         5: .line 927
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
         6: .line 929
      StackMap locals: double
      StackMap stack:
            dload 6 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 8
         7: .line 931
            iload 3 /* ifAbsent */
            ireturn
         8: .line 933
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            istore 4 /* index */
        end local 6 // double keyAtIndex
         9: .line 922
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* i */
            iconst_4
            if_icmplt 3
        end local 5 // int i
        11: .line 935
            aload 0 /* this */
            dload 1 /* key */
            iload 3 /* ifAbsent */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.slowGetIfAbsentTwo:(DI)I
            ireturn
        end local 4 // int index
        end local 3 // int ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   12     1         key  D
            0   12     3    ifAbsent  I
            1   12     4       index  I
            2   11     5           i  I
            4    9     6  keyAtIndex  D
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int slowGetIfAbsentTwo(double, int);
    descriptor: (DI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
        start local 3 // int ifAbsent
         0: .line 940
            aload 0 /* this */
            dload 1 /* key */
            iconst_m1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probeTwo:(DI)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 941
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 3
         2: .line 943
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 4 /* index */
            iaload
            ireturn
         3: .line 945
      StackMap locals: int
      StackMap stack:
            iload 3 /* ifAbsent */
            ireturn
        end local 4 // int index
        end local 3 // int ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    4     1       key  D
            0    4     3  ifAbsent  I
            1    4     4     index  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  public int getOrThrow(double);
    descriptor: (D)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 951
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 4
         1: .line 953
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 955
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            dload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc " not present."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 957
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         4: .line 959
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 8
         5: .line 961
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 7
         6: .line 963
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            dload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc " not present."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 965
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
         8: .line 967
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            istore 3 /* index */
        start local 3 // int index
         9: .line 968
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* index */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 11
        10: .line 970
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* index */
            iaload
            ireturn
        11: .line 972
      StackMap locals: int
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            dload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc " not present."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // int index
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   12     1    key  D
            9   12     3  index  I
    MethodParameters:
      Name  Flags
      key   

  public boolean containsKey(double);
    descriptor: (D)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double key
         0: .line 978
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifeq 3
         1: .line 980
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 982
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifeq 6
         4: .line 984
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
         6: .line 986
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probe:(D)I
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    8     1   key  D
    MethodParameters:
      Name  Flags
      key   

  public void forEachKey(org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 992
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 994
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 996
            aload 1 /* procedure */
            dconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         3: .line 998
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1000
            aload 1 /* procedure */
            dconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         5: .line 1003
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1005
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1007
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         9: .line 1003
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1010
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
         0: .line 1015
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 1017
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1019
            aload 1 /* procedure */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure.value:(DI)V
         3: .line 1021
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1023
            aload 1 /* procedure */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure.value:(DI)V
         5: .line 1026
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1028
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1030
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 2 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure.value:(DI)V
         9: .line 1026
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1033
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.LazyDoubleIterable keysView();
    descriptor: ()Lorg/eclipse/collections/api/LazyDoubleIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1038
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeysView
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeysView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.DoubleIntPair> keyValuesView();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1044
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeyValuesView
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeyValuesView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/primitive/DoubleIntPair;>;

  public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1050
            getstatic org.eclipse.collections.impl.factory.primitive.IntDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableIntDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableIntDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
            astore 1 /* result */
        start local 1 // org.eclipse.collections.api.map.primitive.MutableIntDoubleMap result
         1: .line 1051
            aload 0 /* this */
            aload 1 /* result */
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
              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:
                  (DI)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;DI)V (6)
                  (DI)V
                  1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;)V
         2: .line 1059
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.collections.api.map.primitive.MutableIntDoubleMap result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            1    3     1  result  Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap select(org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate predicate
         0: .line 1065
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap result
         1: .line 1067
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 1069
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifeq 4
         3: .line 1071
            aload 2 /* result */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         4: .line 1073
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifeq 6
         5: .line 1075
            aload 2 /* result */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         6: .line 1078
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 1080
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifeq 10
         9: .line 1082
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
        10: .line 1078
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 1086
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap reject(org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate predicate
         0: .line 1092
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap result
         1: .line 1094
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 1096
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifne 4
         3: .line 1098
            aload 2 /* result */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         4: .line 1100
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifne 6
         5: .line 1102
            aload 2 /* result */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         6: .line 1105
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 1107
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate.accept:(DI)Z
            ifne 10
         9: .line 1109
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 3 /* i */
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
        10: .line 1105
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 1112
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // java.io.ObjectOutput out
         0: .line 1118
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 1119
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 8
         2: .line 1121
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         3: .line 1123
            aload 1 /* out */
            dconst_0
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
         4: .line 1124
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         5: .line 1126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 8
         6: .line 1128
            aload 1 /* out */
            dconst_1
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
         7: .line 1129
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         8: .line 1132
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         9: goto 14
        10: .line 1134
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 13
        11: .line 1136
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 2 /* i */
            daload
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
        12: .line 1137
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            iload 2 /* i */
            iaload
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
        13: .line 1132
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            if_icmplt 10
        end local 2 // int i
        15: .line 1140
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   16     1   out  Ljava/io/ObjectOutput;
            9   15     2     i  I
    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=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // java.io.ObjectInput in
         0: .line 1145
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 1146
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 1148
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readDouble:()D
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
         4: .line 1146
            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 1150
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    7     1    in  Ljava/io/ObjectInput;
            1    7     2  size  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

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

  private void rehashAndGrow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1162
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.maxOccupiedWithData:()I
            istore 1 /* max */
        start local 1 // int max
         1: .line 1163
            iload 1 /* max */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            iconst_1
            iadd
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.smallestPowerOfTwoGreaterThan:(I)I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         2: .line 1164
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.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.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
            if_icmpge 4
         3: .line 1166
            iload 2 /* newCapacity */
            iconst_1
            ishl
            istore 2 /* newCapacity */
         4: .line 1168
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.rehash:(I)V
         5: .line 1169
            return
        end local 2 // int newCapacity
        end local 1 // int max
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            1    6     1          max  I
            2    6     2  newCapacity  I

  private void rehash(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int newCapacity
         0: .line 1173
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 1174
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            astore 3 /* old */
        start local 3 // double[] old
         2: .line 1175
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
            astore 4 /* oldValues */
        start local 4 // int[] oldValues
         3: .line 1176
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.allocateTable:(I)V
         4: .line 1177
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithData:I
         5: .line 1178
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.occupiedWithSentinels:I
         6: .line 1180
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 11
         8: .line 1182
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap int int double[] int[] int
      StackMap stack:
            aload 3 /* old */
            iload 5 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1184
            aload 0 /* this */
            aload 3 /* old */
            iload 5 /* i */
            daload
            aload 4 /* oldValues */
            iload 5 /* i */
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.put:(DI)V
        10: .line 1180
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 2 /* oldLength */
            if_icmplt 8
        end local 5 // int i
        12: .line 1187
            return
        end local 4 // int[] oldValues
        end local 3 // double[] old
        end local 2 // int oldLength
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1  newCapacity  I
            1   13     2    oldLength  I
            2   13     3          old  [D
            3   13     4    oldValues  [I
            7   12     5            i  I
    MethodParameters:
             Name  Flags
      newCapacity  

  int probe(double);
    descriptor: (D)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double element
         0: .line 1192
            aload 0 /* this */
            dload 1 /* element */
            d2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.mask:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 1193
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 3 /* index */
            daload
            dstore 4 /* keyAtIndex */
        start local 4 // double keyAtIndex
         2: .line 1195
            dload 4 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifeq 3
            dload 4 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 4
         3: .line 1197
      StackMap locals: int double
      StackMap stack:
            iload 3 /* index */
            ireturn
         4: .line 1200
      StackMap locals:
      StackMap stack:
            dload 4 /* keyAtIndex */
            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 1201
            iconst_1
            istore 7 /* i */
        start local 7 // int i
         8: goto 20
         9: .line 1203
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            istore 8 /* nextIndex */
        start local 8 // int nextIndex
        10: .line 1204
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 8 /* nextIndex */
            daload
            dstore 4 /* keyAtIndex */
        11: .line 1205
            dload 4 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
        12: .line 1207
            iload 8 /* nextIndex */
            ireturn
        13: .line 1209
      StackMap locals: int
      StackMap stack:
            dload 4 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 17
        14: .line 1211
            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 1213
      StackMap locals:
      StackMap stack:
            dload 4 /* keyAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 19
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 1215
            iload 8 /* nextIndex */
            istore 6 /* removedIndex */
        end local 8 // int nextIndex
        19: .line 1201
      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 1218
            aload 0 /* this */
            dload 1 /* element */
            iload 6 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.probeTwo:(DI)I
            ireturn
        end local 6 // int removedIndex
        end local 4 // double keyAtIndex
        end local 3 // int index
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   22     1       element  D
            1   22     3         index  I
            2   22     4    keyAtIndex  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 1223
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.spreadTwoAndMask:(D)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 1224
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 14
         3: .line 1226
      StackMap locals: int int
      StackMap stack:
            iload 4 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         4: .line 1227
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 6 /* nextIndex */
            daload
            dstore 7 /* keyAtIndex */
        start local 7 // double keyAtIndex
         5: .line 1228
            dload 7 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
         6: .line 1230
            iload 6 /* nextIndex */
            ireturn
         7: .line 1232
      StackMap locals: int double
      StackMap stack:
            dload 7 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 11
         8: .line 1234
            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 1236
      StackMap locals:
      StackMap stack:
            dload 7 /* keyAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 1238
            iload 6 /* nextIndex */
            istore 3 /* removedIndex */
        end local 7 // double keyAtIndex
        end local 6 // int nextIndex
        13: .line 1224
      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 1241
            aload 0 /* this */
            dload 1 /* element */
            iload 3 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.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.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            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    keyAtIndex  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 1246
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadOne:(D)J
            l2i
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
         1: .line 1247
            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 1251
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextIndex */
            iload 5 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.mask:(I)I
            istore 4 /* nextIndex */
         3: .line 1252
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 4 /* nextIndex */
            daload
            dstore 6 /* keyAtIndex */
        start local 6 // double keyAtIndex
         4: .line 1253
            dload 6 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 6
         5: .line 1255
            iload 4 /* nextIndex */
            ireturn
         6: .line 1257
      StackMap locals: double
      StackMap stack:
            dload 6 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 10
         7: .line 1259
            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 1261
      StackMap locals:
      StackMap stack:
            dload 6 /* keyAtIndex */
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 2
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 1263
            iload 4 /* nextIndex */
            istore 3 /* removedIndex */
        end local 6 // double keyAtIndex
        12: .line 1249
            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.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0   13     1       element  D
            0   13     3  removedIndex  I
            1   13     4     nextIndex  I
            2   13     5     spreadTwo  I
            4   12     6    keyAtIndex  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double element
         0: .line 1271
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadOne:(D)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 1272
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // double element
         0: .line 1277
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadTwo:(D)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 1278
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int spread
         0: .line 1283
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  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.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int sizeToAllocate
         0: .line 1288
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            newarray 7
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
         1: .line 1289
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            newarray 10
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.values:[I
         2: .line 1290
            return
        end local 1 // int sizeToAllocate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    3     1  sizeToAllocate  I
    MethodParameters:
                Name  Flags
      sizeToAllocate  

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

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

  private static boolean isNonSentinel(double);
    descriptor: (D)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // double key
         0: .line 1304
            dload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifne 1
            dload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // double key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  D
    MethodParameters:
      Name  Flags
      key   

  protected boolean isNonSentinelAtIndex(int);
    descriptor: (I)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
        start local 1 // int index
         0: .line 1310
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 1 /* index */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isEmptyKey:(D)Z
            ifne 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.keys:[D
            iload 1 /* index */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.isRemovedKey:(D)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

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

  public org.eclipse.collections.api.set.primitive.MutableDoubleSet keySet();
    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.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1475
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySet.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  public org.eclipse.collections.api.collection.primitive.MutableIntCollection values();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
         0: .line 1561
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$ValuesCollection
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$ValuesCollection.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;

  public org.eclipse.collections.api.map.primitive.MutableDoubleIntMap withKeyValue(double, int);
    descriptor: (DI)Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            dload 1
            iload 3
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap.withKeyValue:(DI)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.MutableDoubleIntMap withoutKey(double);
    descriptor: (D)Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
    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.map.mutable.primitive.DoubleIntHashMap.withoutKey:(D)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

  public org.eclipse.collections.api.iterator.IntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/IntIterator;
    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.map.mutable.primitive.DoubleIntHashMap.intIterator:()Lorg/eclipse/collections/api/iterator/MutableIntIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.map.primitive.IntDoubleMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
    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.map.mutable.primitive.DoubleIntHashMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$2(org.eclipse.collections.api.map.primitive.MutableIntDoubleMap, double, int);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;DI)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=3
        start local 1 // double key
        start local 3 // int value
         0: .line 1053
            aload 0
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntDoubleMap.containsKey:(I)Z
            ifeq 2
         1: .line 1055
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* value */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " found at key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0
            iload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntDoubleMap.get:(I)D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            ldc " and key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            dload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1057
      StackMap locals:
      StackMap stack:
            aload 0
            iload 3 /* value */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntDoubleMap.put:(ID)V
         3: .line 1058
            return
        end local 3 // int value
        end local 1 // double key
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     1    key  D
            0    4     3  value  I

  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=6, 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 { // 3
          -1647345003: 3
               111375: 1
           1282355003: 2
              default: 4
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "put"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_0
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "removeKey"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_2
            istore 2
      StackMap locals:
      StackMap stack:
         4: iload 2
            lookupswitch { // 3
                    0: 5
                    1: 6
                    2: 7
              default: 8
          }
      StackMap locals:
      StackMap stack:
         5: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 5
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(DI)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(DI)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
              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:
                  (DI)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.put(DI)V (5)
                  (DI)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         6: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 5
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/DoubleProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(D)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(D)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleProcedure;
              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)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.removeKey(D)V (5)
                  (D)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         7: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(DI)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;DI)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableIntDoubleMap
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleIntProcedure;
              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:
                  (DI)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleIntHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;DI)V (6)
                  (DI)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         8: 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: "DoubleIntHashMap.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$InternalIntIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySet  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySetIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeyValuesView  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeyValuesView$InternalKeyValuesIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeysView  org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$ValuesCollection
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  protected SentinelValues = org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues of org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap
  private InternalIntIterator = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$InternalIntIterator of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  private KeySet = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySet of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  private KeySetIterator = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeySetIterator of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  private KeyValuesView = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeyValuesView of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  private KeysView = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$KeysView of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap
  private ValuesCollection = org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap$ValuesCollection of org.eclipse.collections.impl.map.mutable.primitive.DoubleIntHashMap