public class org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> implements org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap<V>, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

  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 double[] keys;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

  private V[] values;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Signature: [TV;

  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.DoubleObjectHashMap$SentinelValues<V> sentinelValues;
    descriptor: Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues<TV;>;

  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.DoubleObjectHashMap this
         0: .line 179
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 177
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
         2: .line 181
            aload 0 /* this */
            bipush 16
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.allocateTable:(I)V
         3: .line 182
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // int initialCapacity
         0: .line 184
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 177
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
         2: .line 186
            iload 1 /* initialCapacity */
            ifge 4
         3: .line 188
            new java.lang.IllegalArgumentException
            dup
            ldc "initial capacity cannot be less than 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 190
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* initialCapacity */
            iconst_1
            ishl
            i2f
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.fastCeil:(F)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.smallestPowerOfTwoGreaterThan:(I)I
            istore 2 /* capacity */
        start local 2 // int capacity
         5: .line 191
            aload 0 /* this */
            iload 2 /* capacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.allocateTable:(I)V
         6: .line 192
            return
        end local 2 // int capacity
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    7     1  initialCapacity  I
            5    7     2         capacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(org.eclipse.collections.api.map.primitive.DoubleObjectMap<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
         0: .line 196
            aload 0 /* this */
            aload 1 /* map */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.size:()I
            bipush 8
            invokestatic java.lang.Math.max:(II)I
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.<init>:(I)V
         1: .line 197
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.putAll:(Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)V
         2: .line 198
            return
        end local 1 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1   map  Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;
    Signature: (Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;)V
    MethodParameters:
      Name  Flags
      map   

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

  private int fastCeil(float);
    descriptor: (F)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // float v
         0: .line 207
            fload 1 /* v */
            f2i
            istore 2 /* possibleResult */
        start local 2 // int possibleResult
         1: .line 208
            fload 1 /* v */
            iload 2 /* possibleResult */
            i2f
            fsub
            fconst_0
            fcmpl
            ifle 3
         2: .line 210
            iinc 2 /* possibleResult */ 1
         3: .line 212
      StackMap locals: int
      StackMap stack:
            iload 2 /* possibleResult */
            ireturn
        end local 2 // int possibleResult
        end local 1 // float v
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    4     1               v  F
            1    4     2  possibleResult  I
    MethodParameters:
      Name  Flags
      v     

  public static <V> org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> newMap();
    descriptor: ()Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 217
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <V:Ljava/lang/Object;>()Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public static <V> org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> newMap(org.eclipse.collections.api.map.primitive.DoubleObjectMap<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
         0: .line 222
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
            dup
            aload 0 /* map */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.<init>:(Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)V
            areturn
        end local 0 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   map  Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
      Name  Flags
      map   

  public static <V> org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> newWithKeysValues(double, V);
    descriptor: (DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double key
        start local 2 // java.lang.Object value
         0: .line 227
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
            dup
            iconst_1
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.<init>:(I)V
            dload 0 /* key */
            aload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.withKeyValue:(DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
        end local 2 // java.lang.Object value
        end local 0 // double key
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0    key  D
            0    1     2  value  TV;
    Signature: <V:Ljava/lang/Object;>(DTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

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

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

  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.DoubleObjectHashMap this
        start local 1 // java.lang.Object obj
         0: .line 243
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 245
            iconst_1
            ireturn
         2: .line 248
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.map.primitive.DoubleObjectMap
            ifne 4
         3: .line 250
            iconst_0
            ireturn
         4: .line 253
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.map.primitive.DoubleObjectMap
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.map.primitive.DoubleObjectMap other
         5: .line 255
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.size:()I
            if_icmpeq 7
         6: .line 257
            iconst_0
            ireturn
         7: .line 260
      StackMap locals: org.eclipse.collections.api.map.primitive.DoubleObjectMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 10
         8: .line 262
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.containsKey:(D)Z
            ifne 9
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.containsKey:(D)Z
            ifeq 14
         9: .line 264
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        10: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 12
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.containsKey:(D)Z
            ifeq 11
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* other */
            dconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.get:(D)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 12
        11: .line 271
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        12: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 14
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.containsKey:(D)Z
            ifeq 13
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* other */
            dconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.get:(D)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 14
        13: .line 276
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        14: .line 280
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 20
        16: .line 282
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            dstore 4 /* key */
        start local 4 // double key
        17: .line 283
            dload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 19
            aload 2 /* other */
            dload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.containsKey:(D)Z
            ifeq 18
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* other */
            dload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.get:(D)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        18: .line 285
      StackMap locals: double
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // double key
        19: .line 280
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 16
        end local 3 // int i
        21: .line 288
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.map.primitive.DoubleObjectMap other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   22     1    obj  Ljava/lang/Object;
            5   22     2  other  Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<TV;>;
           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.DoubleObjectHashMap this
         0: .line 294
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 296
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 10
         2: .line 298
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 6
         3: .line 300
            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.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            ifnonnull 4
            iconst_0
            goto 5
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int
      StackMap stack: int int
         4: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int
      StackMap stack: int int int
         5: ixor
            iadd
            istore 1 /* result */
         6: .line 303
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 10
         7: .line 305
            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.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            ifnonnull 8
            iconst_0
            goto 9
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int
      StackMap stack: int int
         8: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int
      StackMap stack: int int int
         9: ixor
            iadd
            istore 1 /* result */
        10: .line 309
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        11: goto 17
        12: .line 311
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 16
        13: .line 313
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            ifnonnull 14
            iconst_0
            goto 15
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int int
      StackMap stack: int int
        14: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int int
      StackMap stack: int int int
        15: ixor
            iadd
            istore 1 /* result */
        16: .line 309
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 12
        end local 2 // int i
        18: .line 316
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1   19     1  result  I
           11   18     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.DoubleObjectHashMap this
         0: .line 322
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* appendable */
        start local 1 // java.lang.StringBuilder appendable
         1: .line 324
            aload 1 /* appendable */
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 326
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         3: .line 328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 12
         4: .line 330
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         5: .line 332
            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.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         6: .line 333
            iconst_0
            istore 2 /* first */
         7: .line 335
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 12
         8: .line 337
            iload 2 /* first */
            ifne 10
         9: .line 339
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 341
      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.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        11: .line 342
            iconst_0
            istore 2 /* first */
        12: .line 345
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 21
        14: .line 347
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            dstore 4 /* key */
        start local 4 // double key
        15: .line 348
            dload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 20
        16: .line 350
            iload 2 /* first */
            ifne 18
        17: .line 352
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        18: .line 354
      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.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        19: .line 355
            iconst_0
            istore 2 /* first */
        end local 4 // double key
        20: .line 345
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 14
        end local 3 // int i
        22: .line 358
            aload 1 /* appendable */
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 360
            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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1   24     1  appendable  Ljava/lang/StringBuilder;
            3   24     2       first  Z
           13   22     3           i  I
           15   20     4         key  D

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 366
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.size:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
      StackMap stack: int int
         2: iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 372
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            ifne 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.size:()I
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public boolean notEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 378
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            ifne 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.size:()I
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public java.lang.String makeString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 384
            aload 0 /* this */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public java.lang.String makeString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.String separator
         0: .line 390
            aload 0 /* this */
            ldc ""
            aload 1 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.makeString:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String separator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  separator  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      separator  

  public java.lang.String makeString(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 396
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 4 /* stringBuilder */
        start local 4 // java.lang.Appendable stringBuilder
         1: .line 397
            aload 0 /* this */
            aload 4 /* stringBuilder */
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 398
            aload 4 /* stringBuilder */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 4 // java.lang.Appendable stringBuilder
        end local 3 // java.lang.String end
        end local 2 // java.lang.String separator
        end local 1 // java.lang.String start
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1          start  Ljava/lang/String;
            0    3     2      separator  Ljava/lang/String;
            0    3     3            end  Ljava/lang/String;
            1    3     4  stringBuilder  Ljava/lang/Appendable;
    MethodParameters:
           Name  Flags
      start      
      separator  
      end        

  public void appendString(java.lang.Appendable);
    descriptor: (Ljava/lang/Appendable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Appendable appendable
         0: .line 404
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 405
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  appendable  Ljava/lang/Appendable;
    MethodParameters:
            Name  Flags
      appendable  

  public void appendString(java.lang.Appendable, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 410
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ""
            aload 2 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 411
            return
        end local 2 // java.lang.String separator
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  appendable  Ljava/lang/Appendable;
            0    2     2   separator  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      appendable  
      separator   

  public void appendString(java.lang.Appendable, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String start
        start local 3 // java.lang.String separator
        start local 4 // java.lang.String end
         0: .line 418
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 420
            iconst_1
            istore 5 /* first */
        start local 5 // boolean first
         2: .line 422
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 11
         3: .line 424
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 6
         4: .line 426
            aload 1 /* appendable */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         5: .line 427
            iconst_0
            istore 5 /* first */
         6: .line 429
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 11
         7: .line 431
            iload 5 /* first */
            ifne 9
         8: .line 433
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 435
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        10: .line 436
            iconst_0
            istore 5 /* first */
        11: .line 439
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        12: goto 20
        13: .line 441
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* i */
            daload
            dstore 7 /* key */
        start local 7 // double key
        14: .line 442
            dload 7 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 19
        15: .line 444
            iload 5 /* first */
            ifne 17
        16: .line 446
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        17: .line 448
      StackMap locals: double
      StackMap stack:
            aload 1 /* appendable */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        18: .line 449
            iconst_0
            istore 5 /* first */
        end local 7 // double key
        19: .line 439
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 13
        end local 6 // int i
        21: .line 452
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 5 // boolean first
        22: .line 453
            goto 25
        23: .line 454
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap java.lang.Appendable java.lang.String java.lang.String java.lang.String
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        24: .line 456
            new java.lang.RuntimeException
            dup
            aload 5 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        25: .line 458
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String end
        end local 3 // java.lang.String separator
        end local 2 // java.lang.String start
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   26     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   26     1  appendable  Ljava/lang/Appendable;
            0   26     2       start  Ljava/lang/String;
            0   26     3   separator  Ljava/lang/String;
            0   26     4         end  Ljava/lang/String;
            2   22     5       first  Z
           12   21     6           i  I
           14   19     7         key  D
           24   25     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    22      23  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public java.util.Iterator<V> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 463
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$InternalIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$InternalIterator.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 469
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            anewarray java.lang.Object
            astore 1 /* result */
        start local 1 // java.lang.Object[] result
         1: .line 470
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         2: .line 472
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 7
         3: .line 474
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         4: .line 476
            aload 1 /* result */
            iload 2 /* index */
            iinc 2 /* index */ 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aastore
         5: .line 478
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 7
         6: .line 480
            aload 1 /* result */
            iload 2 /* index */
            iinc 2 /* index */ 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aastore
         7: .line 483
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 12
         9: .line 485
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 11
        10: .line 487
            aload 1 /* result */
            iload 2 /* index */
            iinc 2 /* index */ 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aastore
        11: .line 483
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 9
        end local 3 // int i
        13: .line 490
            aload 1 /* result */
            areturn
        end local 2 // int index
        end local 1 // java.lang.Object[] result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1   14     1  result  [Ljava/lang/Object;
            2   14     2   index  I
            8   13     3       i  I

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Object[] a
         0: .line 496
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 498
            aload 1 /* a */
            arraylength
            iload 2 /* size */
            if_icmpge 3
         2: .line 499
            aload 1 /* a */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
            iload 2 /* size */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            goto 4
         3: .line 500
      StackMap locals: int
      StackMap stack:
            aload 1 /* a */
         4: .line 498
      StackMap locals:
      StackMap stack: java.lang.Object[]
            astore 3 /* result */
        start local 3 // java.lang.Object[] result
         5: .line 502
            aload 0 /* this */
            aload 3 /* result */
            invokedynamic value([Ljava/lang/Object;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              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:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$0([Ljava/lang/Object;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWithIndex:(Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
         6: .line 503
            aload 3 /* result */
            arraylength
            iload 2 /* size */
            if_icmple 8
         7: .line 505
            aload 3 /* result */
            iload 2 /* size */
            aconst_null
            aastore
         8: .line 507
      StackMap locals: java.lang.Object[]
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object[] result
        end local 2 // int size
        end local 1 // java.lang.Object[] a
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    9     1       a  [Ljava/lang/Object;
            1    9     2    size  I
            5    9     3  result  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      a     

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Object object
         0: .line 513
            aload 0 /* this */
            aload 1 /* object */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.containsValue:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public boolean containsAllIterable(java.lang.Iterable<?>);
    descriptor: (Ljava/lang/Iterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Iterable source
         0: .line 519
            aload 1 /* source */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap java.lang.Iterable top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* item */
        start local 2 // java.lang.Object item
         2: .line 521
            aload 0 /* this */
            aload 2 /* item */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.contains:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 523
            iconst_0
            ireturn
        end local 2 // java.lang.Object item
         4: .line 519
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 526
            iconst_1
            ireturn
        end local 1 // java.lang.Iterable source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    6     1  source  Ljava/lang/Iterable<*>;
            2    4     2    item  Ljava/lang/Object;
    Signature: (Ljava/lang/Iterable<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Collection source
         0: .line 532
            aload 0 /* this */
            aload 1 /* source */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.containsAllIterable:(Ljava/lang/Iterable;)Z
            ireturn
        end local 1 // java.util.Collection source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  source  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAllArguments(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Object[] elements
         0: .line 538
            aload 1 /* elements */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* item */
        start local 2 // java.lang.Object item
         2: .line 540
            aload 0 /* this */
            aload 2 /* item */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.contains:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 542
            iconst_0
            ireturn
        end local 2 // java.lang.Object item
         4: .line 538
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 545
            iconst_1
            ireturn
        end local 1 // java.lang.Object[] elements
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    7     1  elements  [Ljava/lang/Object;
            2    4     2      item  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> tap(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 551
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachValue:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 552
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
           Name  Flags
      procedure  

  public void forEach(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 558
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.each:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 559
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 564
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachValue:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 565
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachWithIndex(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
         0: .line 570
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         1: .line 571
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 573
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 575
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            iload 2 /* index */
            iinc 2 /* index */ 1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         4: .line 577
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 579
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            iload 2 /* index */
            iinc 2 /* index */ 1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
         6: .line 582
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 584
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 586
            aload 1 /* objectIntProcedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            iload 2 /* index */
            iinc 2 /* index */ 1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure.value:(Ljava/lang/Object;I)V
        10: .line 582
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 589
            return
        end local 2 // int index
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure objectIntProcedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   13     0                this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  objectIntProcedure  Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;
            1   13     2               index  I
            7   12     3                   i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure<-TV;>;)V
    MethodParameters:
                    Name  Flags
      objectIntProcedure  

  public <P> void forEachWith(org.eclipse.collections.api.block.procedure.Procedure2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        start local 2 // java.lang.Object parameter
         0: .line 594
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 596
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 598
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 600
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 602
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         5: .line 605
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 607
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 609
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure2.value:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 605
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 612
            return
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure2 procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;
            0   12     2  parameter  TP;
            6   11     3          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/procedure/Procedure2<-TV;-TP;>;TP;)V
    MethodParameters:
           Name  Flags
      procedure  
      parameter  

  public void forEachValue(org.eclipse.collections.api.block.procedure.Procedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
         0: .line 617
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 619
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 621
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         3: .line 623
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 625
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         5: .line 628
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 630
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 632
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.procedure.Procedure.value:(Ljava/lang/Object;)V
         9: .line 628
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 635
            return
        end local 1 // org.eclipse.collections.api.block.procedure.Procedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/Procedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  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.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
         0: .line 640
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 642
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 644
            aload 1 /* procedure */
            dconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         3: .line 646
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 648
            aload 1 /* procedure */
            dconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         5: .line 651
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 653
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 655
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure.value:(D)V
         9: .line 651
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 658
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleObjectProcedure procedure
         0: .line 663
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 665
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 667
            aload 1 /* procedure */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleObjectProcedure.value:(DLjava/lang/Object;)V
         3: .line 669
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 671
            aload 1 /* procedure */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleObjectProcedure.value:(DLjava/lang/Object;)V
         5: .line 674
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 676
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 678
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.DoubleObjectProcedure.value:(DLjava/lang/Object;)V
         9: .line 674
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 681
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.DoubleObjectProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> select(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate predicate
         0: .line 686
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap result
         1: .line 688
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 690
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifeq 4
         3: .line 692
            aload 2 /* result */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 694
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifeq 6
         5: .line 696
            aload 2 /* result */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 699
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 701
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifeq 10
         9: .line 703
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
        10: .line 699
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 706
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate<-TV;>;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            7   12     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate<-TV;>;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> reject(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate predicate
         0: .line 712
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap result
         1: .line 714
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 716
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifne 4
         3: .line 718
            aload 2 /* result */
            dconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 720
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifne 6
         5: .line 722
            aload 2 /* result */
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 725
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 727
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate.accept:(DLjava/lang/Object;)Z
            ifne 10
         9: .line 729
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
        10: .line 725
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 732
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate<-TV;>;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            7   12     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate<-TV;>;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.bag.MutableBag<V> select(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 738
            new org.eclipse.collections.impl.bag.mutable.HashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 739
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 741
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 743
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
         4: .line 745
      StackMap locals: org.eclipse.collections.api.bag.MutableBag
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 747
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
         6: .line 750
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 752
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 754
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
        10: .line 750
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 757
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            1   13     2     result  Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
            7   12     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<V>> R select(org.eclipse.collections.api.block.predicate.Predicate<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 763
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 765
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 767
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 769
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 771
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 774
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 776
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 778
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 774
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 781
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0   12     2     target  TR;
            6   11     3          i  I
    Signature: <R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.api.bag.MutableBag<V> selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 787
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, R extends java.util.Collection<V>> R selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 793
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 795
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 797
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 799
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 801
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 804
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 806
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 808
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 804
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 811
            aload 3 /* targetCollection */
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2         parameter  TP;
            0   12     3  targetCollection  TR;
            6   11     4                 i  I
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public org.eclipse.collections.api.bag.MutableBag<V> reject(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 817
            new org.eclipse.collections.impl.bag.mutable.HashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 818
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 820
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 822
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
         4: .line 824
      StackMap locals: org.eclipse.collections.api.bag.MutableBag
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 6
         5: .line 826
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
         6: .line 829
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 831
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 10
         9: .line 833
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.bag.MutableBag.add:(Ljava/lang/Object;)Z
            pop
        10: .line 829
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 836
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            1   13     2     result  Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
            7   12     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <R extends java.util.Collection<V>> R reject(org.eclipse.collections.api.block.predicate.Predicate<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // java.util.Collection target
         0: .line 842
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 844
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 846
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 848
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 850
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 853
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 855
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 9
         8: .line 857
            aload 2 /* target */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 853
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 860
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0   12     2     target  TR;
            6   11     3          i  I
    Signature: <R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      target     

  public <P> org.eclipse.collections.api.bag.MutableBag<V> rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 866
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <P, R extends java.util.Collection<V>> R rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 872
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 874
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 3
         2: .line 876
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 878
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 5
         4: .line 880
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 883
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 885
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 887
            aload 3 /* targetCollection */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 883
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 890
            aload 3 /* targetCollection */
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1         predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2         parameter  TP;
            0   12     3  targetCollection  TR;
            6   11     4                 i  I
    Signature: <P:Ljava/lang/Object;R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      predicate         
      parameter         
      targetCollection  

  public org.eclipse.collections.api.partition.bag.PartitionMutableBag<V> partition(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 896
            new org.eclipse.collections.impl.partition.bag.PartitionHashBag
            dup
            invokespecial org.eclipse.collections.impl.partition.bag.PartitionHashBag.<init>:()V
            astore 2 /* partitionMutableBag */
        start local 2 // org.eclipse.collections.api.partition.bag.PartitionMutableBag partitionMutableBag
         1: .line 897
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* partitionMutableBag */
            invokespecial org.eclipse.collections.impl.block.procedure.PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 898
            aload 2 /* partitionMutableBag */
            areturn
        end local 2 // org.eclipse.collections.api.partition.bag.PartitionMutableBag partitionMutableBag
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1            predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            1    3     2  partitionMutableBag  Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> org.eclipse.collections.api.partition.bag.PartitionMutableBag<V> partitionWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 904
            new org.eclipse.collections.impl.partition.bag.PartitionHashBag
            dup
            invokespecial org.eclipse.collections.impl.partition.bag.PartitionHashBag.<init>:()V
            astore 3 /* partitionMutableBag */
        start local 3 // org.eclipse.collections.api.partition.bag.PartitionMutableBag partitionMutableBag
         1: .line 905
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.PartitionProcedure
            dup
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Predicates.bind:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/predicate/Predicate;
            aload 3 /* partitionMutableBag */
            invokespecial org.eclipse.collections.impl.block.procedure.PartitionProcedure.<init>:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/partition/PartitionMutableCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 906
            aload 3 /* partitionMutableBag */
            areturn
        end local 3 // org.eclipse.collections.api.partition.bag.PartitionMutableBag partitionMutableBag
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1            predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    3     2            parameter  TP;
            1    3     3  partitionMutableBag  Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <S> org.eclipse.collections.api.bag.MutableBag<S> selectInstancesOf(java.lang.Class<S>);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Class clazz
         0: .line 912
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(I)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.bag.MutableBag result
         1: .line 913
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure
            dup
            aload 1 /* clazz */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure.<init>:(Ljava/lang/Class;Ljava/util/Collection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 914
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.bag.MutableBag result
        end local 1 // java.lang.Class clazz
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1   clazz  Ljava/lang/Class<TS;>;
            1    3     2  result  Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Class<TS;>;)Lorg/eclipse/collections/api/bag/MutableBag<TS;>;
    MethodParameters:
       Name  Flags
      clazz  

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 920
            aload 0 /* this */
            aload 1 /* function */
            new org.eclipse.collections.impl.bag.mutable.HashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.primitive.MutableBooleanBag collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
         0: .line 926
            aload 0 /* this */
            aload 1 /* booleanFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.BooleanHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableBooleanBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
    MethodParameters:
                 Name  Flags
      booleanFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableBooleanCollection> R collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
         0: .line 932
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure
            dup
            aload 1 /* booleanFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 933
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableBooleanCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.BooleanFunction booleanFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  booleanFunction  Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;
            0    2     2           target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableBooleanCollection;>(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction<-TV;>;TR;)TR;
    MethodParameters:
                 Name  Flags
      booleanFunction  
      target           

  public org.eclipse.collections.api.bag.primitive.MutableByteBag collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
         0: .line 939
            aload 0 /* this */
            aload 1 /* byteFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.ByteHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.ByteHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableByteBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
    MethodParameters:
              Name  Flags
      byteFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableByteCollection> R collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
         0: .line 945
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure
            dup
            aload 1 /* byteFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 946
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableByteCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteFunction byteFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  byteFunction  Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;
            0    2     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableByteCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      byteFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableCharBag collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
         0: .line 952
            aload 0 /* this */
            aload 1 /* charFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.CharHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.CharHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableCharBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
    MethodParameters:
              Name  Flags
      charFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableCharCollection> R collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
         0: .line 958
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure
            dup
            aload 1 /* charFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 959
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableCharCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.CharFunction charFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  charFunction  Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;
            0    2     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableCharCollection;>(Lorg/eclipse/collections/api/block/function/primitive/CharFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      charFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableDoubleBag collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
         0: .line 965
            aload 0 /* this */
            aload 1 /* doubleFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableDoubleBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
    MethodParameters:
                Name  Flags
      doubleFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableDoubleCollection> R collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
         0: .line 971
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure
            dup
            aload 1 /* doubleFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 972
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableDoubleCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction doubleFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  doubleFunction  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
            0    2     2          target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;>(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;TR;)TR;
    MethodParameters:
                Name  Flags
      doubleFunction  
      target          

  public org.eclipse.collections.api.bag.primitive.MutableFloatBag collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
         0: .line 978
            aload 0 /* this */
            aload 1 /* floatFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableFloatBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
    MethodParameters:
               Name  Flags
      floatFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableFloatCollection> R collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
         0: .line 984
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure
            dup
            aload 1 /* floatFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 985
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableFloatCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction floatFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  floatFunction  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
            0    2     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableFloatCollection;>(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      floatFunction  
      target         

  public org.eclipse.collections.api.bag.primitive.MutableIntBag collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
         0: .line 991
            aload 0 /* this */
            aload 1 /* intFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableIntBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
    MethodParameters:
             Name  Flags
      intFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableIntCollection> R collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
         0: .line 997
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure
            dup
            aload 1 /* intFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 998
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableIntCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction intFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  intFunction  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
            0    2     2       target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableIntCollection;>(Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;TR;)TR;
    MethodParameters:
             Name  Flags
      intFunction  
      target       

  public org.eclipse.collections.api.bag.primitive.MutableLongBag collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
         0: .line 1004
            aload 0 /* this */
            aload 1 /* longFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableLongBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
    MethodParameters:
              Name  Flags
      longFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableLongCollection> R collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
         0: .line 1010
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure
            dup
            aload 1 /* longFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 1011
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableLongCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction longFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  longFunction  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
            0    2     2        target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;>(Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;TR;)TR;
    MethodParameters:
              Name  Flags
      longFunction  
      target        

  public org.eclipse.collections.api.bag.primitive.MutableShortBag collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
         0: .line 1017
            aload 0 /* this */
            aload 1 /* shortFunction */
            new org.eclipse.collections.impl.bag.mutable.primitive.ShortHashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.primitive.ShortHashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
            checkcast org.eclipse.collections.api.bag.primitive.MutableShortBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
    MethodParameters:
               Name  Flags
      shortFunction  

  public <R extends org.eclipse.collections.api.collection.primitive.MutableShortCollection> R collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction<? super V>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        start local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
         0: .line 1023
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure
            dup
            aload 1 /* shortFunction */
            aload 2 /* target */
            invokespecial org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure.<init>:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         1: .line 1024
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.collection.primitive.MutableShortCollection target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ShortFunction shortFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1  shortFunction  Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;
            0    2     2         target  TR;
    Signature: <R::Lorg/eclipse/collections/api/collection/primitive/MutableShortCollection;>(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction<-TV;>;TR;)TR;
    MethodParameters:
               Name  Flags
      shortFunction  
      target         

  public <P, VV> org.eclipse.collections.api.bag.MutableBag<VV> collectWith(org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends VV>, P);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
         0: .line 1030
            aload 0 /* this */
            aload 1 /* function */
            aload 2 /* parameter */
            invokestatic org.eclipse.collections.impl.block.factory.Functions.bind:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/block/function/Function;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;TP;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
           Name  Flags
      function   
      parameter  

  public <P, VV, R extends java.util.Collection<VV>> R collectWith(org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends VV>, P, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function2 function
        start local 2 // java.lang.Object parameter
        start local 3 // java.util.Collection targetCollection
         0: .line 1036
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1038
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1040
            aload 3 /* targetCollection */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 1042
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1044
            aload 3 /* targetCollection */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 1047
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 1049
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1051
            aload 3 /* targetCollection */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 1047
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 1054
            aload 3 /* targetCollection */
            areturn
        end local 3 // java.util.Collection targetCollection
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.function.Function2 function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1          function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;
            0   12     2         parameter  TP;
            0   12     3  targetCollection  TR;
            6   11     4                 i  I
    Signature: <P:Ljava/lang/Object;VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TVV;>;TP;TR;)TR;
    MethodParameters:
                  Name  Flags
      function          
      parameter         
      targetCollection  

  public <VV, R extends java.util.Collection<VV>> R collect(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 1060
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1062
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1064
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 1066
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1068
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 1071
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1073
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1075
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 1071
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1078
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0   12     2    target  TR;
            6   11     3         i  I
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
         0: .line 1084
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0    1     2   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <VV, R extends java.util.Collection<VV>> R collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function function
        start local 3 // java.util.Collection target
         0: .line 1090
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1092
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1094
            aload 3 /* target */
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         3: .line 1096
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1098
            aload 3 /* target */
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         5: .line 1101
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 1103
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1105
            aload 3 /* target */
            aload 2 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
         9: .line 1101
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 1108
            aload 3 /* target */
            areturn
        end local 3 // java.util.Collection target
        end local 2 // org.eclipse.collections.api.block.function.Function function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0   12     2   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0   12     3     target  TR;
            6   11     4          i  I
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
           Name  Flags
      predicate  
      function   
      target     

  public <VV> org.eclipse.collections.api.bag.MutableBag<VV> flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1114
            aload 0 /* this */
            aload 1 /* function */
            new org.eclipse.collections.impl.bag.mutable.HashBag
            dup
            invokespecial org.eclipse.collections.impl.bag.mutable.HashBag.<init>:()V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;)Lorg/eclipse/collections/api/bag/MutableBag<TVV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends java.util.Collection<VV>> R flatCollect(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // java.util.Collection target
         0: .line 1120
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1124
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            pop
         3: .line 1126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1128
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            pop
         5: .line 1131
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1133
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1135
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            pop
         9: .line 1131
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1138
            aload 2 /* target */
            areturn
        end local 2 // java.util.Collection target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
            0   12     2    target  TR;
            6   11     3         i  I
    Signature: <VV:Ljava/lang/Object;R::Ljava/util/Collection<TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public V detect(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1144
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1146
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1148
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         3: .line 1150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1152
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         5: .line 1155
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1157
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1159
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            areturn
         9: .line 1155
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1162
            aconst_null
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> V detectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1168
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1170
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1172
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         3: .line 1174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1176
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         5: .line 1179
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1181
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1183
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            areturn
         9: .line 1179
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1186
            aconst_null
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2  parameter  TP;
            6   11     3          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public java.util.Optional<V> detectOptional(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1192
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.detect:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Ljava/lang/Object;
            invokestatic java.util.Optional.ofNullable:(Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  

  public <P> java.util.Optional<V> detectWithOptional(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1198
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.detectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic java.util.Optional.ofNullable:(Ljava/lang/Object;)Ljava/util/Optional;
            areturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    1     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Ljava/util/Optional<TV;>;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public V detectIfNone(org.eclipse.collections.api.block.predicate.Predicate<? super V>, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        start local 2 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 1204
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1206
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1208
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         3: .line 1210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1212
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         5: .line 1215
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1217
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1219
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            areturn
         9: .line 1215
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1222
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            0   12     2   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            6   11     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      function   

  public <P> V detectWithIfNone(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, P, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 1228
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1230
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1232
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         3: .line 1234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1236
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         5: .line 1239
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 1241
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            areturn
         9: .line 1239
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 1246
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2  parameter  TP;
            0   12     3   function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            6   11     4          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;Lorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
           Name  Flags
      predicate  
      parameter  
      function   

  public int count(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1252
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 1253
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1255
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 1257
            iinc 2 /* count */ 1
         4: .line 1259
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 1261
            iinc 2 /* count */ 1
         6: .line 1264
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 1266
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 10
         9: .line 1268
            iinc 2 /* count */ 1
        10: .line 1264
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 1271
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            1   13     2      count  I
            7   12     3          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)I
    MethodParameters:
           Name  Flags
      predicate  

  public <P> int countWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1277
            iconst_0
            istore 3 /* count */
        start local 3 // int count
         1: .line 1278
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1280
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 4
         3: .line 1282
            iinc 3 /* count */ 1
         4: .line 1284
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 1286
            iinc 3 /* count */ 1
         6: .line 1289
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 1291
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         9: .line 1293
            iinc 3 /* count */ 1
        10: .line 1289
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 1296
            iload 3 /* count */
            ireturn
        end local 3 // int count
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   13     2  parameter  TP;
            1   13     3      count  I
            7   12     4          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)I
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1302
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1304
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1306
            iconst_1
            ireturn
         3: .line 1308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1310
            iconst_1
            ireturn
         5: .line 1313
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1315
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1317
            iconst_1
            ireturn
         9: .line 1313
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1320
            iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean anySatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1326
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 1330
            iconst_1
            ireturn
         3: .line 1332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 1334
            iconst_1
            ireturn
         5: .line 1337
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1339
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1341
            iconst_1
            ireturn
         9: .line 1337
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1344
            iconst_0
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2  parameter  TP;
            6   11     3          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1350
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1352
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 3
         2: .line 1354
            iconst_0
            ireturn
         3: .line 1356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 1358
            iconst_0
            ireturn
         5: .line 1361
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1363
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifne 9
         8: .line 1365
            iconst_0
            ireturn
         9: .line 1361
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1368
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean allSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1374
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1376
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 3
         2: .line 1378
            iconst_0
            ireturn
         3: .line 1380
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 5
         4: .line 1382
            iconst_0
            ireturn
         5: .line 1385
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1387
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* parameter */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate2.accept:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 1389
            iconst_0
            ireturn
         9: .line 1385
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1392
            iconst_1
            ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0   12     2  parameter  TP;
            6   11     3          i  I
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.Predicate<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
         0: .line 1398
            aload 0 /* this */
            aload 1 /* predicate */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.anySatisfy:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TV;>;)Z
    MethodParameters:
           Name  Flags
      predicate  

  public <P> boolean noneSatisfyWith(org.eclipse.collections.api.block.predicate.Predicate2<? super V, ? super P>, );
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        start local 2 // java.lang.Object parameter
         0: .line 1404
            aload 0 /* this */
            aload 1 /* predicate */
            aload 2 /* parameter */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.anySatisfyWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 2 // java.lang.Object parameter
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate2 predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1  predicate  Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;
            0    3     2  parameter  TP;
    Signature: <P:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/predicate/Predicate2<-TV;-TP;>;TP;)Z
    MethodParameters:
           Name  Flags
      predicate  
      parameter  

  public <IV> IV injectInto(IV, org.eclipse.collections.api.block.function.Function2<? super IV, ? super V, ? extends IV>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)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.DoubleObjectHashMap this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.Function2 function
         0: .line 1410
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 1411
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1413
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 1415
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
         4: .line 1417
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 1419
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
         6: .line 1422
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 1424
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1426
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* result */
        10: .line 1422
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 1429
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.Function2 function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  injectedValue  TIV;
            0   13     2       function  Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TV;+TIV;>;
            1   13     3         result  TIV;
            7   12     4              i  I
    Signature: <IV:Ljava/lang/Object;>(TIV;Lorg/eclipse/collections/api/block/function/Function2<-TIV;-TV;+TIV;>;)TIV;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public int injectInto(int, org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction<? super V>);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // int injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
         0: .line 1435
            iload 1 /* injectedValue */
            istore 3 /* result */
        start local 3 // int result
         1: .line 1436
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1438
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 1440
            aload 2 /* function */
            iload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction.intValueOf:(ILjava/lang/Object;)I
            istore 3 /* result */
         4: .line 1442
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 1444
            aload 2 /* function */
            iload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction.intValueOf:(ILjava/lang/Object;)I
            istore 3 /* result */
         6: .line 1447
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 1449
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1451
            aload 2 /* function */
            iload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction.intValueOf:(ILjava/lang/Object;)I
            istore 3 /* result */
        10: .line 1447
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 1454
            iload 3 /* result */
            ireturn
        end local 3 // int result
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntObjectToIntFunction function
        end local 1 // int injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  injectedValue  I
            0   13     2       function  Lorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TV;>;
            1   13     3         result  I
            7   12     4              i  I
    Signature: (ILorg/eclipse/collections/api/block/function/primitive/IntObjectToIntFunction<-TV;>;)I
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public long injectInto(long, org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction<? super V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // long injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
         0: .line 1460
            lload 1 /* injectedValue */
            lstore 4 /* result */
        start local 4 // long result
         1: .line 1461
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1463
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 1465
            aload 3 /* function */
            lload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction.longValueOf:(JLjava/lang/Object;)J
            lstore 4 /* result */
         4: .line 1467
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 1469
            aload 3 /* function */
            lload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction.longValueOf:(JLjava/lang/Object;)J
            lstore 4 /* result */
         6: .line 1472
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 11
         8: .line 1474
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1476
            aload 3 /* function */
            lload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction.longValueOf:(JLjava/lang/Object;)J
            lstore 4 /* result */
        10: .line 1472
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 6 // int i
        12: .line 1479
            lload 4 /* result */
            lreturn
        end local 4 // long result
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongObjectToLongFunction function
        end local 1 // long injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  injectedValue  J
            0   13     3       function  Lorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TV;>;
            1   13     4         result  J
            7   12     6              i  I
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongObjectToLongFunction<-TV;>;)J
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public float injectInto(float, org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction<? super V>);
    descriptor: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction;)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // float injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
         0: .line 1485
            fload 1 /* injectedValue */
            fstore 3 /* result */
        start local 3 // float result
         1: .line 1486
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1488
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 1490
            aload 2 /* function */
            fload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction.floatValueOf:(FLjava/lang/Object;)F
            fstore 3 /* result */
         4: .line 1492
      StackMap locals: float
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 1494
            aload 2 /* function */
            fload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction.floatValueOf:(FLjava/lang/Object;)F
            fstore 3 /* result */
         6: .line 1497
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 1499
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1501
            aload 2 /* function */
            fload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction.floatValueOf:(FLjava/lang/Object;)F
            fstore 3 /* result */
        10: .line 1497
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 1504
            fload 3 /* result */
            freturn
        end local 3 // float result
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatObjectToFloatFunction function
        end local 1 // float injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  injectedValue  F
            0   13     2       function  Lorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TV;>;
            1   13     3         result  F
            7   12     4              i  I
    Signature: (FLorg/eclipse/collections/api/block/function/primitive/FloatObjectToFloatFunction<-TV;>;)F
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public double injectInto(double, org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction<? super V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double injectedValue
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
         0: .line 1510
            dload 1 /* injectedValue */
            dstore 4 /* result */
        start local 4 // double result
         1: .line 1511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 1513
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 1515
            aload 3 /* function */
            dload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction.doubleValueOf:(DLjava/lang/Object;)D
            dstore 4 /* result */
         4: .line 1517
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 1519
            aload 3 /* function */
            dload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction.doubleValueOf:(DLjava/lang/Object;)D
            dstore 4 /* result */
         6: .line 1522
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 11
         8: .line 1524
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 1526
            aload 3 /* function */
            dload 4 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction.doubleValueOf:(DLjava/lang/Object;)D
            dstore 4 /* result */
        10: .line 1522
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 6 // int i
        12: .line 1529
            dload 4 /* result */
            dreturn
        end local 4 // double result
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleObjectToDoubleFunction function
        end local 1 // double injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  injectedValue  D
            0   13     3       function  Lorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TV;>;
            1   13     4         result  D
            7   12     6              i  I
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleObjectToDoubleFunction<-TV;>;)D
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public <S> org.eclipse.collections.api.bag.MutableBag<org.eclipse.collections.api.tuple.Pair<V, S>> zip(java.lang.Iterable<S>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Iterable that
         0: .line 1539
            aload 1 /* that */
            instanceof java.util.Collection
            ifne 1
            aload 1 /* that */
            instanceof org.eclipse.collections.api.RichIterable
            ifeq 4
         1: .line 1541
      StackMap locals:
      StackMap stack:
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.utility.Iterate.sizeOf:(Ljava/lang/Iterable;)I
            istore 2 /* thatSize */
        start local 2 // int thatSize
         2: .line 1542
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            iload 2 /* thatSize */
            invokestatic java.lang.Math.min:(II)I
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:(I)Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            astore 3 /* target */
        start local 3 // org.eclipse.collections.impl.bag.mutable.HashBag target
         3: .line 1543
            aload 0 /* this */
            aload 1 /* that */
            aload 3 /* target */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 3 // org.eclipse.collections.impl.bag.mutable.HashBag target
        end local 2 // int thatSize
         4: .line 1545
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* that */
            invokestatic org.eclipse.collections.impl.bag.mutable.HashBag.newBag:()Lorg/eclipse/collections/impl/bag/mutable/HashBag;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.zip:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.bag.MutableBag
            areturn
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    5     1      that  Ljava/lang/Iterable<TS;>;
            2    4     2  thatSize  I
            3    4     3    target  Lorg/eclipse/collections/impl/bag/mutable/HashBag<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;
    Signature: <S:Ljava/lang/Object;>(Ljava/lang/Iterable<TS;>;)Lorg/eclipse/collections/api/bag/MutableBag<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      that  

  public <S, R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<V, S>>> R zip(java.lang.Iterable<S>, );
    descriptor: (Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Iterable that
        start local 2 // java.util.Collection target
         0: .line 1551
            aload 0 /* this */
            aload 1 /* that */
            aload 2 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.zip:(Ljava/lang/Iterable;Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 2 // java.util.Collection target
        end local 1 // java.lang.Iterable that
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1    that  Ljava/lang/Iterable<TS;>;
            0    1     2  target  TR;
    Signature: <S:Ljava/lang/Object;R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TV;TS;>;>;>(Ljava/lang/Iterable<TS;>;TR;)TR;
    MethodParameters:
        Name  Flags
      that    
      target  

  public org.eclipse.collections.api.set.MutableSet<org.eclipse.collections.api.tuple.Pair<V, java.lang.Integer>> zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1561
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.zipWithIndex:(Ljava/util/Collection;)Ljava/util/Collection;
            checkcast org.eclipse.collections.api.set.MutableSet
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public <R extends java.util.Collection<org.eclipse.collections.api.tuple.Pair<V, java.lang.Integer>>> R zipWithIndex();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Collection target
         0: .line 1567
            aload 0 /* this */
            aload 1 /* target */
            invokestatic org.eclipse.collections.impl.utility.internal.IterableIterate.zipWithIndex:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<Lorg/eclipse/collections/api/tuple/Pair<TV;Ljava/lang/Integer;>;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.RichIterable<V>> chunk(int);
    descriptor: (I)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // int size
         0: .line 1573
            iload 1 /* size */
            ifgt 2
         1: .line 1575
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Size for groups must be positive but was: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* size */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1577
      StackMap locals:
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.of:()Lorg/eclipse/collections/api/list/MutableList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         3: .line 1578
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.notEmpty:()Z
            ifeq 14
         4: .line 1580
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.iterator:()Ljava/util/Iterator;
            astore 3 /* iterator */
        start local 3 // java.util.Iterator iterator
         5: .line 1581
            goto 13
         6: .line 1583
      StackMap locals: org.eclipse.collections.api.list.MutableList java.util.Iterator
      StackMap stack:
            invokestatic org.eclipse.collections.impl.list.mutable.FastList.newList:()Lorg/eclipse/collections/impl/list/mutable/FastList;
            astore 4 /* batch */
        start local 4 // org.eclipse.collections.api.list.MutableList batch
         7: .line 1584
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 11
         9: .line 1586
      StackMap locals: org.eclipse.collections.api.list.MutableList int
      StackMap stack:
            aload 4 /* batch */
            aload 3 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        10: .line 1584
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 1 /* size */
            if_icmpge 12
            aload 3 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        end local 5 // int i
        12: .line 1588
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            aload 4 /* batch */
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.eclipse.collections.api.list.MutableList batch
        13: .line 1581
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        end local 3 // java.util.Iterator iterator
        14: .line 1591
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.list.MutableList result
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   15     1      size  I
            3   15     2    result  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/RichIterable<TV;>;>;
            5   14     3  iterator  Ljava/util/Iterator<TV;>;
            7   13     4     batch  Lorg/eclipse/collections/api/list/MutableList<TV;>;
            8   12     5         i  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/RichIterable<TV;>;>;
    MethodParameters:
      Name  Flags
      size  

  public <K, VV> org.eclipse.collections.api.map.MutableMap<K, VV> aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K>, org.eclipse.collections.api.block.function.Function0<? extends VV>, org.eclipse.collections.api.block.procedure.Procedure2<? super VV, ? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
         0: .line 1597
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 1598
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* mutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.MutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMapIterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1599
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        end local 3 // org.eclipse.collections.api.block.procedure.Procedure2 mutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1             groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;
            0    3     2    zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;
            0    3     3  mutatingAggregator  Lorg/eclipse/collections/api/block/procedure/Procedure2<-TVV;-TV;>;
            1    3     4                 map  Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    Signature: <K:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;Lorg/eclipse/collections/api/block/procedure/Procedure2<-TVV;-TV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    MethodParameters:
                    Name  Flags
      groupBy             
      zeroValueFactory    
      mutatingAggregator  

  public <K, VV> org.eclipse.collections.api.map.MutableMap<K, VV> aggregateBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends K>, org.eclipse.collections.api.block.function.Function0<? extends VV>, org.eclipse.collections.api.block.function.Function2<? super VV, ? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        start local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
         0: .line 1605
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 4 /* map */
        start local 4 // org.eclipse.collections.api.map.MutableMap map
         1: .line 1606
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure
            dup
            aload 4 /* map */
            aload 1 /* groupBy */
            aload 2 /* zeroValueFactory */
            aload 3 /* nonMutatingAggregator */
            invokespecial org.eclipse.collections.impl.block.procedure.NonMutatingAggregationProcedure.<init>:(Lorg/eclipse/collections/api/map/MutableMapIterable;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1607
            aload 4 /* map */
            areturn
        end local 4 // org.eclipse.collections.api.map.MutableMap map
        end local 3 // org.eclipse.collections.api.block.function.Function2 nonMutatingAggregator
        end local 2 // org.eclipse.collections.api.block.function.Function0 zeroValueFactory
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1                groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;
            0    3     2       zeroValueFactory  Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;
            0    3     3  nonMutatingAggregator  Lorg/eclipse/collections/api/block/function/Function2<-TVV;-TV;+TVV;>;
            1    3     4                    map  Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    Signature: <K:Ljava/lang/Object;VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TK;>;Lorg/eclipse/collections/api/block/function/Function0<+TVV;>;Lorg/eclipse/collections/api/block/function/Function2<-TVV;-TV;+TVV;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TVV;>;
    MethodParameters:
                       Name  Flags
      groupBy                
      zeroValueFactory       
      nonMutatingAggregator  

  public <VV> org.eclipse.collections.api.multimap.bag.MutableBagMultimap<VV, V> groupBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1613
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.api.multimap.bag.MutableBagMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.multimap.MutableMultimap<VV, V>> R groupBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 1619
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1621
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1623
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         3: .line 1625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1627
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         5: .line 1630
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 1632
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1634
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         9: .line 1630
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 1637
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0   12     2    target  TR;
            6   11     3         i  I
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.multimap.bag.MutableBagMultimap<VV, V> groupByEach(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1643
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.multimap.bag.HashBagMultimap.newMultimap:()Lorg/eclipse/collections/impl/multimap/bag/HashBagMultimap;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
            checkcast org.eclipse.collections.api.multimap.bag.MutableBagMultimap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.multimap.MutableMultimap<VV, V>> R groupByEach(org.eclipse.collections.api.block.function.Function<? super V, ? extends java.lang.Iterable<VV>>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/multimap/MutableMultimap;)Lorg/eclipse/collections/api/multimap/MutableMultimap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
         0: .line 1651
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 13
         1: .line 1653
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         2: .line 1655
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            astore 3 /* iterable */
        start local 3 // java.lang.Iterable iterable
         3: .line 1656
            aload 3 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap java.lang.Iterable top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 4 /* key */
        start local 4 // java.lang.Object key
         5: .line 1658
            aload 2 /* target */
            aload 4 /* key */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
        end local 4 // java.lang.Object key
         6: .line 1656
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 3 // java.lang.Iterable iterable
         7: .line 1661
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 13
         8: .line 1663
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            astore 3 /* iterable */
        start local 3 // java.lang.Iterable iterable
         9: .line 1664
            aload 3 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 12
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap java.lang.Iterable top java.util.Iterator
      StackMap stack:
        10: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 4 /* key */
        start local 4 // java.lang.Object key
        11: .line 1666
            aload 2 /* target */
            aload 4 /* key */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
        end local 4 // java.lang.Object key
        12: .line 1664
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        end local 3 // java.lang.Iterable iterable
        13: .line 1670
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        14: goto 22
        15: .line 1672
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 21
        16: .line 1674
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            astore 4 /* iterable */
        start local 4 // java.lang.Iterable iterable
        17: .line 1675
            aload 4 /* iterable */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 6
            goto 20
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap int java.lang.Iterable top java.util.Iterator
      StackMap stack:
        18: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 5 /* key */
        start local 5 // java.lang.Object key
        19: .line 1677
            aload 2 /* target */
            aload 5 /* key */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.multimap.MutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Object key
        20: .line 1675
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 18
        end local 4 // java.lang.Iterable iterable
        21: .line 1670
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap org.eclipse.collections.api.block.function.Function org.eclipse.collections.api.multimap.MutableMultimap int
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 15
        end local 3 // int i
        23: .line 1681
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.multimap.MutableMultimap target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   24     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;
            0   24     2    target  TR;
            3    7     3  iterable  Ljava/lang/Iterable<TVV;>;
            5    6     4       key  TVV;
            9   13     3  iterable  Ljava/lang/Iterable<TVV;>;
           11   12     4       key  TVV;
           14   23     3         i  I
           17   21     4  iterable  Ljava/lang/Iterable<TVV;>;
           19   20     5       key  TVV;
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/multimap/MutableMultimap<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+Ljava/lang/Iterable<TVV;>;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public <VV> org.eclipse.collections.api.map.MutableMap<VV, V> groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1687
            aload 0 /* this */
            aload 1 /* function */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:(I)Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
            checkcast org.eclipse.collections.api.map.MutableMap
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/map/MutableMap<TVV;TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <VV, R extends org.eclipse.collections.api.map.MutableMapIterable<VV, V>> R groupByUniqueKey(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>, );
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/map/MutableMapIterable;)Lorg/eclipse/collections/api/map/MutableMapIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
        start local 2 // org.eclipse.collections.api.map.MutableMapIterable target
         0: .line 1695
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 7
         1: .line 1697
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         2: .line 1699
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.map.MutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 4
         3: .line 1701
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " already exists in map!"
            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
         4: .line 1704
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 7
         5: .line 1706
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.map.MutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 7
         6: .line 1708
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " already exists in map!"
            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 1712
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 13
         9: .line 1714
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 12
        10: .line 1716
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.map.MutableMapIterable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 12
        11: .line 1718
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " already exists in map!"
            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
        12: .line 1712
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 9
        end local 3 // int i
        14: .line 1722
            aload 2 /* target */
            areturn
        end local 2 // org.eclipse.collections.api.map.MutableMapIterable target
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   15     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            0   15     2    target  TR;
            8   14     3         i  I
    Signature: <VV:Ljava/lang/Object;R::Lorg/eclipse/collections/api/map/MutableMapIterable<TVV;TV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;TR;)TR;
    MethodParameters:
          Name  Flags
      function  
      target    

  public V getFirst();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1728
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 1730
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1732
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         3: .line 1734
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1736
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         5: .line 1739
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         6: goto 10
         7: .line 1741
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 1 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 9
         8: .line 1743
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            areturn
         9: .line 1739
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 7
        end local 1 // int i
        11: .line 1746
            aconst_null
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            6   11     1     i  I
    Signature: ()TV;

  public V getLast();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1752
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 5
         2: .line 1754
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 1 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 4
         3: .line 1756
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            areturn
         4: .line 1752
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 2
        end local 1 // int i
         6: .line 1759
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 11
         7: .line 1761
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 9
         8: .line 1763
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         9: .line 1765
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 11
        10: .line 1767
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
        11: .line 1770
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    6     1     i  I
    Signature: ()TV;

  public V getOnly();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1776
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            iconst_1
            if_icmpeq 2
         1: .line 1778
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Size must be 1 but was "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1781
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 7
         3: .line 1783
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         4: .line 1785
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         5: .line 1787
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 7
         6: .line 1789
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         7: .line 1792
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         8: goto 12
         9: .line 1794
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 1 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 11
        10: .line 1796
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 1 /* i */
            aaload
            areturn
        11: .line 1792
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 1 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 9
        end local 1 // int i
        13: .line 1800
            aconst_null
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            8   13     1     i  I
    Signature: ()TV;

  public org.eclipse.collections.api.list.MutableList<V> toList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1806
            getstatic org.eclipse.collections.impl.factory.Lists.mutable:Lorg/eclipse/collections/api/factory/list/MutableListFactory;
            invokeinterface org.eclipse.collections.api.factory.list.MutableListFactory.of:()Lorg/eclipse/collections/api/list/MutableList;
            astore 1 /* list */
        start local 1 // org.eclipse.collections.api.list.MutableList list
         1: .line 1807
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* list */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1808
            aload 1 /* list */
            areturn
        end local 1 // org.eclipse.collections.api.list.MutableList list
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1  list  Lorg/eclipse/collections/api/list/MutableList<TV;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TV;>;

  public <R extends java.util.Collection<V>> R into();
    descriptor: (Ljava/util/Collection;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Collection target
         0: .line 1814
            aload 0 /* this */
            aload 1 /* target */
            invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
            areturn
        end local 1 // java.util.Collection target
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  target  TR;
    Signature: <R::Ljava/util/Collection<TV;>;>(TR;)TR;
    MethodParameters:
        Name  Flags
      target  

  public org.eclipse.collections.api.list.MutableList<V> toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1820
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toList:()Lorg/eclipse/collections/api/list/MutableList;
            invokeinterface org.eclipse.collections.api.list.MutableList.sortThis:()Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/list/MutableList<TV;>;

  public org.eclipse.collections.api.list.MutableList<V> toSortedList(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1826
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* comparator */
            invokeinterface org.eclipse.collections.api.list.MutableList.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  comparator  Ljava/util/Comparator<-TV;>;
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.list.MutableList<V> toSortedListBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/list/MutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1832
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toList:()Lorg/eclipse/collections/api/list/MutableList;
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokeinterface org.eclipse.collections.api.list.MutableList.sortThis:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/list/MutableList;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/list/MutableList<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.set.MutableSet<V> toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1838
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:()Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            astore 1 /* set */
        start local 1 // org.eclipse.collections.api.set.MutableSet set
         1: .line 1839
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* set */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1840
            aload 1 /* set */
            areturn
        end local 1 // org.eclipse.collections.api.set.MutableSet set
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1   set  Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    Signature: ()Lorg/eclipse/collections/api/set/MutableSet<TV;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSet();
    descriptor: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1846
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:()Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 1 /* set */
        start local 1 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
         1: .line 1847
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* set */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1848
            aload 1 /* set */
            areturn
        end local 1 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1   set  Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    Signature: ()Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;

  public org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSet(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1854
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* set */
        start local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
         1: .line 1855
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 2 /* set */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1856
            aload 2 /* set */
            areturn
        end local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1  comparator  Ljava/util/Comparator<-TV;>;
            1    3     2         set  Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.set.sorted.MutableSortedSet<V> toSortedSetBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1862
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokestatic org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet.newSet:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/set/sorted/mutable/TreeSortedSet;
            astore 2 /* set */
        start local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
         1: .line 1863
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 2 /* set */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1864
            aload 2 /* set */
            areturn
        end local 2 // org.eclipse.collections.api.set.sorted.MutableSortedSet set
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            1    3     2       set  Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/set/sorted/MutableSortedSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public org.eclipse.collections.api.bag.MutableBag<V> toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/MutableBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1870
            getstatic org.eclipse.collections.impl.factory.Bags.mutable:Lorg/eclipse/collections/api/factory/bag/MutableBagFactory;
            invokeinterface org.eclipse.collections.api.factory.bag.MutableBagFactory.of:()Lorg/eclipse/collections/api/bag/MutableBag;
            astore 1 /* bag */
        start local 1 // org.eclipse.collections.api.bag.MutableBag bag
         1: .line 1871
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* bag */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1872
            aload 1 /* bag */
            areturn
        end local 1 // org.eclipse.collections.api.bag.MutableBag bag
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1   bag  Lorg/eclipse/collections/api/bag/MutableBag<TV;>;
    Signature: ()Lorg/eclipse/collections/api/bag/MutableBag<TV;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1878
            invokestatic org.eclipse.collections.impl.bag.sorted.mutable.TreeBag.newBag:()Lorg/eclipse/collections/impl/bag/sorted/mutable/TreeBag;
            astore 1 /* sortedBag */
        start local 1 // org.eclipse.collections.api.bag.sorted.MutableSortedBag sortedBag
         1: .line 1879
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 1 /* sortedBag */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1880
            aload 1 /* sortedBag */
            areturn
        end local 1 // org.eclipse.collections.api.bag.sorted.MutableSortedBag sortedBag
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1  sortedBag  Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    Signature: ()Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;

  public org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBag(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1886
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.bag.sorted.mutable.TreeBag.newBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/bag/sorted/mutable/TreeBag;
            astore 2 /* sortedBag */
        start local 2 // org.eclipse.collections.api.bag.sorted.MutableSortedBag sortedBag
         1: .line 1887
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Procedures2.addToCollection:()Lorg/eclipse/collections/api/block/procedure/Procedure2;
            aload 2 /* sortedBag */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachWith:(Lorg/eclipse/collections/api/block/procedure/Procedure2;Ljava/lang/Object;)V
         2: .line 1888
            aload 2 /* sortedBag */
            areturn
        end local 2 // org.eclipse.collections.api.bag.sorted.MutableSortedBag sortedBag
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1  comparator  Ljava/util/Comparator<-TV;>;
            1    3     2   sortedBag  Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    Signature: (Ljava/util/Comparator<-TV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    MethodParameters:
            Name  Flags
      comparator  

  public <VV extends java.lang.Comparable<? super VV>> org.eclipse.collections.api.bag.sorted.MutableSortedBag<V> toSortedBagBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 1894
            aload 0 /* this */
            aload 1 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toSortedBag:(Ljava/util/Comparator;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag;
            areturn
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)Lorg/eclipse/collections/api/bag/sorted/MutableSortedBag<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public <NK, NV> org.eclipse.collections.api.map.MutableMap<NK, NV> toMap(org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1900
            invokestatic org.eclipse.collections.impl.map.mutable.UnifiedMap.newMap:()Lorg/eclipse/collections/impl/map/mutable/UnifiedMap;
            astore 3 /* map */
        start local 3 // org.eclipse.collections.impl.map.mutable.UnifiedMap map
         1: .line 1901
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.MapCollectProcedure
            dup
            aload 3 /* map */
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokespecial org.eclipse.collections.impl.block.procedure.MapCollectProcedure.<init>:(Ljava/util/Map;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1902
            aload 3 /* map */
            areturn
        end local 3 // org.eclipse.collections.impl.map.mutable.UnifiedMap map
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    3     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
            1    3     3            map  Lorg/eclipse/collections/impl/map/mutable/UnifiedMap<TNK;TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/MutableMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1908
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.naturalOrder:()Lorg/eclipse/collections/api/block/SerializableComparator;
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toSortedMap:(Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    1     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMap(java.util.Comparator<? super NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1914
            aload 1 /* comparator */
            invokestatic org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap.newMap:(Ljava/util/Comparator;)Lorg/eclipse/collections/impl/map/sorted/mutable/TreeSortedMap;
            astore 4 /* sortedMap */
        start local 4 // org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap sortedMap
         1: .line 1915
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.MapCollectProcedure
            dup
            aload 4 /* sortedMap */
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokespecial org.eclipse.collections.impl.block.procedure.MapCollectProcedure.<init>:(Ljava/util/Map;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1916
            aload 4 /* sortedMap */
            areturn
        end local 4 // org.eclipse.collections.impl.map.sorted.mutable.TreeSortedMap sortedMap
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1     comparator  Ljava/util/Comparator<-TNK;>;
            0    3     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    3     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
            1    3     4      sortedMap  Lorg/eclipse/collections/impl/map/sorted/mutable/TreeSortedMap<TNK;TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Ljava/util/Comparator<-TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      comparator     
      keyFunction    
      valueFunction  

  public <KK extends java.lang.Comparable<? super KK>, NK, NV> org.eclipse.collections.api.map.sorted.MutableSortedMap<NK, NV> toSortedMapBy(org.eclipse.collections.api.block.function.Function<? super NK, KK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function sortBy
        start local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 3 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1922
            aload 0 /* this */
            aload 1 /* sortBy */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.byFunction:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/block/SerializableComparator;
            aload 2 /* keyFunction */
            aload 3 /* valueFunction */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.toSortedMap:(Ljava/util/Comparator;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap;
            areturn
        end local 3 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 2 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 1 // org.eclipse.collections.api.block.function.Function sortBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1         sortBy  Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;
            0    1     2    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    1     3  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
    Signature: <KK::Ljava/lang/Comparable<-TKK;>;NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TNK;TKK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/map/sorted/MutableSortedMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      sortBy         
      keyFunction    
      valueFunction  

  public <NK, NV> org.eclipse.collections.api.bimap.MutableBiMap<NK, NV> toBiMap(org.eclipse.collections.api.block.function.Function<? super V, ? extends NK>, org.eclipse.collections.api.block.function.Function<? super V, ? extends NV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        start local 2 // org.eclipse.collections.api.block.function.Function valueFunction
         0: .line 1928
            getstatic org.eclipse.collections.impl.factory.BiMaps.mutable:Lorg/eclipse/collections/api/factory/bimap/MutableBiMapFactory;
            invokeinterface org.eclipse.collections.api.factory.bimap.MutableBiMapFactory.empty:()Lorg/eclipse/collections/api/bimap/MutableBiMap;
            astore 3 /* biMap */
        start local 3 // org.eclipse.collections.api.bimap.MutableBiMap biMap
         1: .line 1929
            aload 0 /* this */
            new org.eclipse.collections.impl.block.procedure.BiMapCollectProcedure
            dup
            aload 3 /* biMap */
            aload 1 /* keyFunction */
            aload 2 /* valueFunction */
            invokespecial org.eclipse.collections.impl.block.procedure.BiMapCollectProcedure.<init>:(Lorg/eclipse/collections/api/bimap/MutableBiMap;Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function;)V
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
         2: .line 1930
            aload 3 /* biMap */
            areturn
        end local 3 // org.eclipse.collections.api.bimap.MutableBiMap biMap
        end local 2 // org.eclipse.collections.api.block.function.Function valueFunction
        end local 1 // org.eclipse.collections.api.block.function.Function keyFunction
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1    keyFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;
            0    3     2  valueFunction  Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;
            1    3     3          biMap  Lorg/eclipse/collections/api/bimap/MutableBiMap<TNK;TNV;>;
    Signature: <NK:Ljava/lang/Object;NV:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TNK;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TNV;>;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TNK;TNV;>;
    MethodParameters:
               Name  Flags
      keyFunction    
      valueFunction  

  public org.eclipse.collections.api.LazyIterable<V> asLazy();
    descriptor: ()Lorg/eclipse/collections/api/LazyIterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 1936
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.utility.LazyIterate.adapt:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/LazyIterable;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/LazyIterable<TV;>;

  public V min(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1942
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmpty:()Z
            ifeq 2
         1: .line 1944
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1947
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* min */
        start local 2 // java.lang.Object min
         3: .line 1948
            iconst_0
            istore 3 /* isMinSet */
        start local 3 // boolean isMinSet
         4: .line 1950
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 11
         5: .line 1952
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 1954
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 2 /* min */
         7: .line 1955
            iconst_1
            istore 3 /* isMinSet */
         8: .line 1957
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 11
            iload 3 /* isMinSet */
            ifeq 9
            aload 1 /* comparator */
            aload 2 /* min */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 11
         9: .line 1959
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 2 /* min */
        10: .line 1960
            iconst_1
            istore 3 /* isMinSet */
        11: .line 1963
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        12: goto 17
        13: .line 1965
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 16
            iload 3 /* isMinSet */
            ifeq 14
            aload 1 /* comparator */
            aload 2 /* min */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 16
        14: .line 1967
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            astore 2 /* min */
        15: .line 1968
            iconst_1
            istore 3 /* isMinSet */
        16: .line 1963
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 13
        end local 4 // int i
        18: .line 1971
            aload 2 /* min */
            areturn
        end local 3 // boolean isMinSet
        end local 2 // java.lang.Object min
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   19     1  comparator  Ljava/util/Comparator<-TV;>;
            3   19     2         min  TV;
            4   19     3    isMinSet  Z
           12   18     4           i  I
    Signature: (Ljava/util/Comparator<-TV;>;)TV;
    MethodParameters:
            Name  Flags
      comparator  

  public V max(java.util.Comparator<? super V>);
    descriptor: (Ljava/util/Comparator;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.util.Comparator comparator
         0: .line 1977
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmpty:()Z
            ifeq 2
         1: .line 1979
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1982
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* max */
        start local 2 // java.lang.Object max
         3: .line 1983
            iconst_0
            istore 3 /* isMaxSet */
        start local 3 // boolean isMaxSet
         4: .line 1985
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 11
         5: .line 1987
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 1989
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 2 /* max */
         7: .line 1990
            iconst_1
            istore 3 /* isMaxSet */
         8: .line 1992
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 11
            iload 3 /* isMaxSet */
            ifeq 9
            aload 1 /* comparator */
            aload 2 /* max */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifge 11
         9: .line 1994
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 2 /* max */
        10: .line 1995
            iconst_1
            istore 3 /* isMaxSet */
        11: .line 1998
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        12: goto 17
        13: .line 2000
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 16
            iload 3 /* isMaxSet */
            ifeq 14
            aload 1 /* comparator */
            aload 2 /* max */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifge 16
        14: .line 2002
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            astore 2 /* max */
        15: .line 2003
            iconst_1
            istore 3 /* isMaxSet */
        16: .line 1998
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 13
        end local 4 // int i
        18: .line 2006
            aload 2 /* max */
            areturn
        end local 3 // boolean isMaxSet
        end local 2 // java.lang.Object max
        end local 1 // java.util.Comparator comparator
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   19     1  comparator  Ljava/util/Comparator<-TV;>;
            3   19     2         max  TV;
            4   19     3    isMaxSet  Z
           12   18     4           i  I
    Signature: (Ljava/util/Comparator<-TV;>;)TV;
    MethodParameters:
            Name  Flags
      comparator  

  public V min();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 2012
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.naturalOrder:()Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.min:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()TV;

  public V max();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 2018
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.block.factory.Comparators.naturalOrder:()Lorg/eclipse/collections/api/block/SerializableComparator;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.max:(Ljava/util/Comparator;)Ljava/lang/Object;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()TV;

  public <VV extends java.lang.Comparable<? super VV>> V maxBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 2024
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmpty:()Z
            ifeq 2
         1: .line 2026
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 2029
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* max */
        start local 2 // java.lang.Object max
         3: .line 2030
            iconst_0
            istore 3 /* isMaxSet */
        start local 3 // boolean isMaxSet
         4: .line 2031
            aconst_null
            astore 4 /* maxValue */
        start local 4 // java.lang.Comparable maxValue
         5: .line 2033
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 16
         6: .line 2035
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 10
         7: .line 2037
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 2 /* max */
         8: .line 2038
            iconst_1
            istore 3 /* isMaxSet */
         9: .line 2039
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 4 /* maxValue */
        10: .line 2041
      StackMap locals: java.lang.Object int java.lang.Comparable
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 16
        11: .line 2043
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 5 /* nextValue */
        start local 5 // java.lang.Comparable nextValue
        12: .line 2044
            iload 3 /* isMaxSet */
            ifeq 13
            aload 5 /* nextValue */
            aload 4 /* maxValue */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 16
        13: .line 2046
      StackMap locals: java.lang.Comparable
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 2 /* max */
        14: .line 2047
            iconst_1
            istore 3 /* isMaxSet */
        15: .line 2048
            aload 5 /* nextValue */
            astore 4 /* maxValue */
        end local 5 // java.lang.Comparable nextValue
        16: .line 2052
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        17: goto 26
        18: .line 2054
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 5 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 25
        19: .line 2056
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* i */
            aaload
            astore 6 /* next */
        start local 6 // java.lang.Object next
        20: .line 2057
            aload 1 /* function */
            aload 6 /* next */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 7 /* nextValue */
        start local 7 // java.lang.Comparable nextValue
        21: .line 2058
            iload 3 /* isMaxSet */
            ifeq 22
            aload 7 /* nextValue */
            aload 4 /* maxValue */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 25
        22: .line 2060
      StackMap locals: java.lang.Object java.lang.Comparable
      StackMap stack:
            aload 6 /* next */
            astore 2 /* max */
        23: .line 2061
            iconst_1
            istore 3 /* isMaxSet */
        24: .line 2062
            aload 7 /* nextValue */
            astore 4 /* maxValue */
        end local 7 // java.lang.Comparable nextValue
        end local 6 // java.lang.Object next
        25: .line 2052
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 5 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 18
        end local 5 // int i
        27: .line 2066
            aload 2 /* max */
            areturn
        end local 4 // java.lang.Comparable maxValue
        end local 3 // boolean isMaxSet
        end local 2 // java.lang.Object max
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   28     1   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            3   28     2        max  TV;
            4   28     3   isMaxSet  Z
            5   28     4   maxValue  TVV;
           12   16     5  nextValue  TVV;
           17   27     5          i  I
           20   25     6       next  TV;
           21   25     7  nextValue  TVV;
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)TV;
    MethodParameters:
          Name  Flags
      function  

  public <VV extends java.lang.Comparable<? super VV>> V minBy(org.eclipse.collections.api.block.function.Function<? super V, ? extends VV>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function function
         0: .line 2072
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmpty:()Z
            ifeq 2
         1: .line 2074
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 2077
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* min */
        start local 2 // java.lang.Object min
         3: .line 2078
            iconst_0
            istore 3 /* isMinSet */
        start local 3 // boolean isMinSet
         4: .line 2079
            aconst_null
            astore 4 /* minValue */
        start local 4 // java.lang.Comparable minValue
         5: .line 2081
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 16
         6: .line 2083
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 10
         7: .line 2085
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 2 /* min */
         8: .line 2086
            iconst_1
            istore 3 /* isMinSet */
         9: .line 2087
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 4 /* minValue */
        10: .line 2089
      StackMap locals: java.lang.Object int java.lang.Comparable
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 16
        11: .line 2091
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 5 /* nextValue */
        start local 5 // java.lang.Comparable nextValue
        12: .line 2092
            iload 3 /* isMinSet */
            ifeq 13
            aload 5 /* nextValue */
            aload 4 /* minValue */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifge 16
        13: .line 2094
      StackMap locals: java.lang.Comparable
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 2 /* min */
        14: .line 2095
            iconst_1
            istore 3 /* isMinSet */
        15: .line 2096
            aload 5 /* nextValue */
            astore 4 /* minValue */
        end local 5 // java.lang.Comparable nextValue
        16: .line 2100
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        17: goto 26
        18: .line 2102
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 5 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 25
        19: .line 2104
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* i */
            aaload
            astore 6 /* next */
        start local 6 // java.lang.Object next
        20: .line 2105
            aload 1 /* function */
            aload 6 /* next */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Comparable
            astore 7 /* nextValue */
        start local 7 // java.lang.Comparable nextValue
        21: .line 2106
            iload 3 /* isMinSet */
            ifeq 22
            aload 7 /* nextValue */
            aload 4 /* minValue */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifge 25
        22: .line 2108
      StackMap locals: java.lang.Object java.lang.Comparable
      StackMap stack:
            aload 6 /* next */
            astore 2 /* min */
        23: .line 2109
            iconst_1
            istore 3 /* isMinSet */
        24: .line 2110
            aload 7 /* nextValue */
            astore 4 /* minValue */
        end local 7 // java.lang.Comparable nextValue
        end local 6 // java.lang.Object next
        25: .line 2100
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 5 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 18
        end local 5 // int i
        27: .line 2114
            aload 2 /* min */
            areturn
        end local 4 // java.lang.Comparable minValue
        end local 3 // boolean isMinSet
        end local 2 // java.lang.Object min
        end local 1 // org.eclipse.collections.api.block.function.Function function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   28     1   function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;
            3   28     2        min  TV;
            4   28     3   isMinSet  Z
            5   28     4   minValue  TVV;
           12   16     5  nextValue  TVV;
           17   27     5          i  I
           20   25     6       next  TV;
           21   25     7  nextValue  TVV;
    Signature: <VV::Ljava/lang/Comparable<-TVV;>;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TVV;>;)TV;
    MethodParameters:
          Name  Flags
      function  

  public long sumOfInt(org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 2120
            lconst_0
            lstore 2 /* sum */
        start local 2 // long sum
         1: .line 2122
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 2124
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 2126
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            i2l
            ladd
            lstore 2 /* sum */
         4: .line 2128
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 2130
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            i2l
            ladd
            lstore 2 /* sum */
         6: .line 2133
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 2135
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 2137
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            i2l
            ladd
            lstore 2 /* sum */
        10: .line 2133
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 2140
            lload 2 /* sum */
            lreturn
        end local 2 // long sum
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
            1   13     2       sum  J
            7   12     4         i  I
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 2146
            dconst_0
            dstore 2 /* sum */
        start local 2 // double sum
         1: .line 2147
            dconst_0
            dstore 4 /* compensation */
        start local 4 // double compensation
         2: .line 2149
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 13
         3: .line 2151
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         4: .line 2153
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatFunction.floatValueOf:(Ljava/lang/Object;)F
            f2d
            dload 4 /* compensation */
            dsub
            dstore 6 /* adjustedValue */
        start local 6 // double adjustedValue
         5: .line 2154
            dload 2 /* sum */
            dload 6 /* adjustedValue */
            dadd
            dstore 8 /* nextSum */
        start local 8 // double nextSum
         6: .line 2155
            dload 8 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 6 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
         7: .line 2156
            dload 8 /* nextSum */
            dstore 2 /* sum */
        end local 8 // double nextSum
        end local 6 // double adjustedValue
         8: .line 2158
      StackMap locals: double double
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 13
         9: .line 2160
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatFunction.floatValueOf:(Ljava/lang/Object;)F
            f2d
            dload 4 /* compensation */
            dsub
            dstore 6 /* adjustedValue */
        start local 6 // double adjustedValue
        10: .line 2161
            dload 2 /* sum */
            dload 6 /* adjustedValue */
            dadd
            dstore 8 /* nextSum */
        start local 8 // double nextSum
        11: .line 2162
            dload 8 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 6 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
        12: .line 2163
            dload 8 /* nextSum */
            dstore 2 /* sum */
        end local 8 // double nextSum
        end local 6 // double adjustedValue
        13: .line 2166
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        14: goto 21
        15: .line 2168
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 20
        16: .line 2170
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.FloatFunction.floatValueOf:(Ljava/lang/Object;)F
            f2d
            dload 4 /* compensation */
            dsub
            dstore 7 /* adjustedValue */
        start local 7 // double adjustedValue
        17: .line 2171
            dload 2 /* sum */
            dload 7 /* adjustedValue */
            dadd
            dstore 9 /* nextSum */
        start local 9 // double nextSum
        18: .line 2172
            dload 9 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 7 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
        19: .line 2173
            dload 9 /* nextSum */
            dstore 2 /* sum */
        end local 9 // double nextSum
        end local 7 // double adjustedValue
        20: .line 2166
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 15
        end local 6 // int i
        22: .line 2176
            dload 2 /* sum */
            dreturn
        end local 4 // double compensation
        end local 2 // double sum
        end local 1 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   23     1       function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
            1   23     2            sum  D
            2   23     4   compensation  D
            5    8     6  adjustedValue  D
            6    8     8        nextSum  D
           10   13     6  adjustedValue  D
           11   13     8        nextSum  D
           14   22     6              i  I
           17   20     7  adjustedValue  D
           18   20     9        nextSum  D
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)D
    MethodParameters:
          Name  Flags
      function  

  public long sumOfLong(org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 2182
            lconst_0
            lstore 2 /* sum */
        start local 2 // long sum
         1: .line 2184
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
         2: .line 2186
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 2188
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongFunction.longValueOf:(Ljava/lang/Object;)J
            ladd
            lstore 2 /* sum */
         4: .line 2190
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 2192
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongFunction.longValueOf:(Ljava/lang/Object;)J
            ladd
            lstore 2 /* sum */
         6: .line 2195
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 2197
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 2199
            lload 2 /* sum */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongFunction.longValueOf:(Ljava/lang/Object;)J
            ladd
            lstore 2 /* sum */
        10: .line 2195
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 2202
            lload 2 /* sum */
            lreturn
        end local 2 // long sum
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   13     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
            1   13     2       sum  J
            7   12     4         i  I
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)J
    MethodParameters:
          Name  Flags
      function  

  public double sumOfDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=11, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 2208
            dconst_0
            dstore 2 /* sum */
        start local 2 // double sum
         1: .line 2209
            dconst_0
            dstore 4 /* compensation */
        start local 4 // double compensation
         2: .line 2211
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 13
         3: .line 2213
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         4: .line 2215
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
            dload 4 /* compensation */
            dsub
            dstore 6 /* adjustedValue */
        start local 6 // double adjustedValue
         5: .line 2216
            dload 2 /* sum */
            dload 6 /* adjustedValue */
            dadd
            dstore 8 /* nextSum */
        start local 8 // double nextSum
         6: .line 2217
            dload 8 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 6 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
         7: .line 2218
            dload 8 /* nextSum */
            dstore 2 /* sum */
        end local 8 // double nextSum
        end local 6 // double adjustedValue
         8: .line 2220
      StackMap locals: double double
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 13
         9: .line 2222
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
            dload 4 /* compensation */
            dsub
            dstore 6 /* adjustedValue */
        start local 6 // double adjustedValue
        10: .line 2223
            dload 2 /* sum */
            dload 6 /* adjustedValue */
            dadd
            dstore 8 /* nextSum */
        start local 8 // double nextSum
        11: .line 2224
            dload 8 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 6 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
        12: .line 2225
            dload 8 /* nextSum */
            dstore 2 /* sum */
        end local 8 // double nextSum
        end local 6 // double adjustedValue
        13: .line 2228
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        14: goto 21
        15: .line 2230
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 20
        16: .line 2232
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
            dload 4 /* compensation */
            dsub
            dstore 7 /* adjustedValue */
        start local 7 // double adjustedValue
        17: .line 2233
            dload 2 /* sum */
            dload 7 /* adjustedValue */
            dadd
            dstore 9 /* nextSum */
        start local 9 // double nextSum
        18: .line 2234
            dload 9 /* nextSum */
            dload 2 /* sum */
            dsub
            dload 7 /* adjustedValue */
            dsub
            dstore 4 /* compensation */
        19: .line 2235
            dload 9 /* nextSum */
            dstore 2 /* sum */
        end local 9 // double nextSum
        end local 7 // double adjustedValue
        20: .line 2228
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 15
        end local 6 // int i
        22: .line 2238
            dload 2 /* sum */
            dreturn
        end local 4 // double compensation
        end local 2 // double sum
        end local 1 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   23     1       function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
            1   23     2            sum  D
            2   23     4   compensation  D
            5    8     6  adjustedValue  D
            6    8     8        nextSum  D
           10   13     6  adjustedValue  D
           11   13     8        nextSum  D
           14   22     6              i  I
           17   20     7  adjustedValue  D
           18   20     9        nextSum  D
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)D
    MethodParameters:
          Name  Flags
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V1> sumByInt(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.IntFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
         0: .line 2244
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectLongMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectLongMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectLongMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 2245
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByIntFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V1> sumByFloat(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.FloatFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
         0: .line 2251
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 2252
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByFloatFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.FloatFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectLongMap<V1> sumByLong(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.LongFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
         0: .line 2258
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectLongMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectLongMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectLongMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
         1: .line 2259
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByLongFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectLongMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.LongFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/LongFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      function  

  public <V1> org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V1> sumByDouble(org.eclipse.collections.api.block.function.Function<? super V, ? extends V1>, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.function.Function groupBy
        start local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
         0: .line 2265
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            astore 3 /* result */
        start local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 2266
            aload 0 /* this */
            aload 3 /* result */
            aload 1 /* groupBy */
            aload 2 /* function */
            invokestatic org.eclipse.collections.impl.block.factory.PrimitiveFunctions.sumByDoubleFunction:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/block/function/Function2;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.injectInto:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function2;)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
            areturn
        end local 3 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        end local 2 // org.eclipse.collections.api.block.function.primitive.DoubleFunction function
        end local 1 // org.eclipse.collections.api.block.function.Function groupBy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   groupBy  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;
            0    2     2  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;
            1    2     3    result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    Signature: <V1:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/Function<-TV;+TV1;>;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TV;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV1;>;
    MethodParameters:
          Name  Flags
      groupBy   
      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.DoubleObjectHashMap this
         0: .line 2272
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         1: .line 2273
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
         2: .line 2274
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
         3: .line 2275
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
            ifeq 6
         4: .line 2277
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            newarray 7
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
         5: .line 2278
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
         6: .line 2280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            dconst_0
            invokestatic java.util.Arrays.fill:([DD)V
         7: .line 2281
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 2282
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public V put(double, );
    descriptor: (DLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // java.lang.Object value
         0: .line 2287
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 7
         1: .line 2289
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 3
         2: .line 2291
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         3: .line 2293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         4: .line 2294
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2295
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2296
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
         7: .line 2299
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 14
         8: .line 2301
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 10
         9: .line 2303
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        10: .line 2305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
        11: .line 2306
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        12: .line 2307
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        13: .line 2308
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
        14: .line 2311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        15: .line 2313
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 19
        16: .line 2316
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
        17: .line 2317
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aload 3 /* value */
            aastore
        18: .line 2318
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        19: .line 2321
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            aload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        20: .line 2322
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   21     1       key  D
            0   21     3     value  TV;
            4    7     4  oldValue  TV;
           11   14     4  oldValue  TV;
           15   21     4     index  I
           17   19     5  oldValue  TV;
    Signature: (DTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putAll(org.eclipse.collections.api.map.primitive.DoubleObjectMap<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
         0: .line 2328
            aload 1 /* map */
            aload 0 /* this */
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;
              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:
                  (DLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$1(DLjava/lang/Object;)V (7)
                  (DLjava/lang/Object;)V
                  1
            invokeinterface org.eclipse.collections.api.map.primitive.DoubleObjectMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;)V
         1: .line 2329
            return
        end local 1 // org.eclipse.collections.api.map.primitive.DoubleObjectMap map
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   map  Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;
    Signature: (Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap<+TV;>;)V
    MethodParameters:
      Name  Flags
      map   

  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.DoubleObjectHashMap this
        start local 1 // double key
         0: .line 2334
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 3
         1: .line 2336
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 2338
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 6
         4: .line 2340
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
         6: .line 2342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    8     1   key  D
    MethodParameters:
      Name  Flags
      key   

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // java.lang.Object value
         0: .line 2348
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 1 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsValue:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 2350
            iconst_1
            ireturn
         2: .line 2352
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 7
         4: .line 2354
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 6
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 1 /* value */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 2356
            iconst_1
            ireturn
         6: .line 2352
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 4
        end local 2 // int i
         8: .line 2359
            iconst_0
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    9     1  value  Ljava/lang/Object;
            3    8     2      i  I
    MethodParameters:
       Name  Flags
      value  

  public V get();
    descriptor: (D)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
         0: .line 2365
            aload 0 /* this */
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.block.factory.Functions0.nullValue:()Lorg/eclipse/collections/api/block/function/Function0;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.getIfAbsent:(DLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
            areturn
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1   key  D
    Signature: (D)TV;
    MethodParameters:
      Name  Flags
      key   

  public V getIfAbsent(double, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/Function0;)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.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
         0: .line 2371
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 4
         1: .line 2373
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 2375
      StackMap locals:
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
         3: .line 2377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         4: .line 2379
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 8
         5: .line 2381
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 6
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifne 7
         6: .line 2383
      StackMap locals:
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
         7: .line 2385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         8: .line 2387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
         9: .line 2388
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 11
        10: .line 2390
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        11: .line 2392
      StackMap locals: int
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   12     1       key  D
            0   12     3  ifAbsent  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            9   12     4     index  I
    Signature: (DLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  public V getIfAbsentPut(double, );
    descriptor: (DLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // java.lang.Object value
         0: .line 2398
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 11
         1: .line 2400
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2402
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         3: .line 2403
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2404
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2405
            aload 3 /* value */
            areturn
         6: .line 2407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 2409
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         8: .line 2411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         9: .line 2412
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        10: .line 2413
            aload 3 /* value */
            areturn
        11: .line 2415
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 22
        12: .line 2417
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 17
        13: .line 2419
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        14: .line 2420
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        15: .line 2421
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        16: .line 2422
            aload 3 /* value */
            areturn
        17: .line 2424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 2426
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        19: .line 2428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        20: .line 2429
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        21: .line 2430
            aload 3 /* value */
            areturn
        22: .line 2432
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        23: .line 2433
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 25
        24: .line 2435
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        25: .line 2437
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            aload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        26: .line 2438
            aload 3 /* value */
            areturn
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   27     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   27     1    key  D
            0   27     3  value  TV;
           23   27     4  index  I
    Signature: (DTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V getIfAbsentPut(double, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 2444
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 13
         1: .line 2446
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2448
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         3: .line 2449
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         4: .line 2450
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2451
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2452
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
         7: .line 2454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2456
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2458
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        10: .line 2459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2460
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2461
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        13: .line 2463
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 26
        14: .line 2465
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2467
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        16: .line 2468
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        17: .line 2469
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2470
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2471
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        20: .line 2473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2475
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2477
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        23: .line 2478
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2479
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2480
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        26: .line 2482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        27: .line 2483
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 29
        28: .line 2485
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        29: .line 2487
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        30: .line 2488
            aload 0 /* this */
            dload 1 /* key */
            aload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        31: .line 2489
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   32     1       key  D
            0   32     3  function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            3    7     4     value  TV;
           10   13     4     value  TV;
           16   20     4     value  TV;
           23   26     4     value  TV;
           27   32     4     index  I
           30   32     5     value  TV;
    Signature: (DLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> V getIfAbsentPutWith(double, org.eclipse.collections.api.block.function.Function<? super P, ? extends V>, );
    descriptor: (DLorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.Function function
        start local 4 // java.lang.Object parameter
         0: .line 2495
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 13
         1: .line 2497
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2499
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         3: .line 2500
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         4: .line 2501
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2502
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2503
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
         7: .line 2505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2507
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2509
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        10: .line 2510
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2512
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        13: .line 2514
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 26
        14: .line 2516
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2518
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        16: .line 2519
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        17: .line 2520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2521
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2522
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        20: .line 2524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2526
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2528
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        23: .line 2529
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2530
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2531
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        26: .line 2533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 5 /* index */
        start local 5 // int index
        27: .line 2534
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 5 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 29
        28: .line 2536
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            areturn
        29: .line 2538
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
        30: .line 2539
            aload 0 /* this */
            dload 1 /* key */
            aload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        31: .line 2540
            aload 6 /* value */
            areturn
        end local 6 // java.lang.Object value
        end local 5 // int index
        end local 4 // java.lang.Object parameter
        end local 3 // org.eclipse.collections.api.block.function.Function function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   32     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   32     1        key  D
            0   32     3   function  Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;
            0   32     4  parameter  TP;
            3    7     5      value  TV;
           10   13     5      value  TV;
           16   20     5      value  TV;
           23   26     5      value  TV;
           27   32     5      index  I
           30   32     6      value  TV;
    Signature: <P:Ljava/lang/Object;>(DLorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public V getIfAbsentPutWithKey(double, org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction<? extends V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
         0: .line 2546
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 13
         1: .line 2548
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2550
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         3: .line 2551
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         4: .line 2552
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2553
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2554
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
         7: .line 2556
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2558
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2560
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        10: .line 2561
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2562
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2563
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        13: .line 2565
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 26
        14: .line 2567
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2569
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        16: .line 2570
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        17: .line 2571
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2572
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2573
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        20: .line 2575
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2577
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2579
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        23: .line 2580
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2581
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2582
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        26: .line 2584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 4 /* index */
        start local 4 // int index
        27: .line 2585
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 29
        28: .line 2587
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        29: .line 2589
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction.valueOf:(D)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        30: .line 2590
            aload 0 /* this */
            dload 1 /* key */
            aload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        31: .line 2591
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction function
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   32     1       key  D
            0   32     3  function  Lorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;
            3    7     4     value  TV;
           10   13     4     value  TV;
           16   20     4     value  TV;
           23   26     4     value  TV;
           27   32     4     index  I
           30   32     5     value  TV;
    Signature: (DLorg/eclipse/collections/api/block/function/primitive/DoubleToObjectFunction<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public V updateValue(double, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends V>);
    descriptor: (DLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function function
         0: .line 2597
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 12
         1: .line 2599
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2601
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         3: .line 2602
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2603
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2604
            goto 11
         6: .line 2605
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         7: .line 2607
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         8: .line 2608
            goto 11
         9: .line 2611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
        10: .line 2612
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        11: .line 2614
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
        12: .line 2616
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 24
        13: .line 2618
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 18
        14: .line 2620
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        15: .line 2621
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2622
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2623
            goto 23
        18: .line 2624
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 21
        19: .line 2626
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        20: .line 2627
            goto 23
        21: .line 2630
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        22: .line 2631
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        23: .line 2633
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        24: .line 2635
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 5 /* index */
        start local 5 // int index
        25: .line 2636
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 5 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 28
        26: .line 2638
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aastore
        27: .line 2639
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            areturn
        28: .line 2641
      StackMap locals: int
      StackMap stack:
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
        29: .line 2642
            aload 0 /* this */
            dload 1 /* key */
            aload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        30: .line 2643
            aload 6 /* value */
            areturn
        end local 6 // java.lang.Object value
        end local 5 // int index
        end local 4 // org.eclipse.collections.api.block.function.Function function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   31     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   31     1       key  D
            0   31     3   factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0   31     4  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;
           25   31     5     index  I
           29   31     6     value  TV;
    Signature: (DLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      factory   
      function  

  public <P> V updateValueWith(double, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends V>, );
    descriptor: (DLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function2 function
        start local 5 // java.lang.Object parameter
         0: .line 2649
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 12
         1: .line 2651
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2653
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         3: .line 2654
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2655
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2656
            goto 11
         6: .line 2657
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         7: .line 2659
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         8: .line 2660
            goto 11
         9: .line 2663
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
        10: .line 2664
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        11: .line 2666
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
        12: .line 2668
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 24
        13: .line 2670
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnonnull 18
        14: .line 2672
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        15: .line 2673
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2674
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2675
            goto 23
        18: .line 2676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 21
        19: .line 2678
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        20: .line 2679
            goto 23
        21: .line 2682
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        22: .line 2683
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        23: .line 2685
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        24: .line 2687
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 6 /* index */
        start local 6 // int index
        25: .line 2688
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 28
        26: .line 2690
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aaload
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            aastore
        27: .line 2691
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aaload
            areturn
        28: .line 2693
      StackMap locals: int
      StackMap stack:
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 7 /* value */
        start local 7 // java.lang.Object value
        29: .line 2694
            aload 0 /* this */
            dload 1 /* key */
            aload 7 /* value */
            iload 6 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.addKeyValueAtIndex:(DLjava/lang/Object;I)V
        30: .line 2695
            aload 7 /* value */
            areturn
        end local 7 // java.lang.Object value
        end local 6 // int index
        end local 5 // java.lang.Object parameter
        end local 4 // org.eclipse.collections.api.block.function.Function2 function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   31     1        key  D
            0   31     3    factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0   31     4   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;
            0   31     5  parameter  TP;
           25   31     6      index  I
           29   31     7      value  TV;
    Signature: <P:Ljava/lang/Object;>(DLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      factory    
      function   
      parameter  

  public V removeKey();
    descriptor: (D)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
         0: .line 2701
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifeq 10
         1: .line 2703
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 2705
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         3: .line 2707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
         4: .line 2708
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 8
         5: .line 2710
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
         6: .line 2711
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         7: .line 2712
            goto 9
         8: .line 2715
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
         9: .line 2717
      StackMap locals:
      StackMap stack:
            aload 3 /* oldValue */
            areturn
        end local 3 // java.lang.Object oldValue
        10: .line 2719
      StackMap locals:
      StackMap stack:
            dload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isRemovedKey:(D)Z
            ifeq 20
        11: .line 2721
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 12
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifne 13
        12: .line 2723
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        13: .line 2725
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
        14: .line 2726
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 18
        15: .line 2728
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2729
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2730
            goto 19
        18: .line 2733
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
        19: .line 2735
      StackMap locals:
      StackMap stack:
            aload 3 /* oldValue */
            areturn
        end local 3 // java.lang.Object oldValue
        20: .line 2737
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.probe:(D)I
            istore 3 /* index */
        start local 3 // int index
        21: .line 2738
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* index */
            daload
            dload 1 /* key */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 25
        22: .line 2740
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
        23: .line 2741
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.removeKeyAtIndex:(I)V
        24: .line 2742
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
        25: .line 2744
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 3 // int index
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   26     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   26     1       key  D
            4   10     3  oldValue  TV;
           14   20     3  oldValue  TV;
           21   26     3     index  I
           23   25     4  oldValue  TV;
    Signature: (D)TV;
    MethodParameters:
      Name  Flags
      key   

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

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> withKeyValue(double, V);
    descriptor: (DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // java.lang.Object value
         0: .line 2756
            aload 0 /* this */
            dload 1 /* key */
            aload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2757
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1    key  D
            0    2     3  value  TV;
    Signature: (DTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap<V> withoutKey(double);
    descriptor: (D)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
         0: .line 2763
            aload 0 /* this */
            dload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.removeKey:(D)Ljava/lang/Object;
            pop
         1: .line 2764
            aload 0 /* this */
            areturn
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    2     1   key  D
    Signature: (D)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap<TV;>;
    MethodParameters:
      Name  Flags
      key   

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap<V> withoutAllKeys(org.eclipse.collections.api.DoubleIterable);
    descriptor: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // org.eclipse.collections.api.DoubleIterable keys
         0: .line 2770
            aload 1 /* keys */
            invokeinterface org.eclipse.collections.api.DoubleIterable.doubleIterator:()Lorg/eclipse/collections/api/iterator/DoubleIterator;
            astore 2 /* iterator */
        start local 2 // org.eclipse.collections.api.iterator.DoubleIterator iterator
         1: .line 2771
            goto 4
         2: .line 2773
      StackMap locals: org.eclipse.collections.api.iterator.DoubleIterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.next:()D
            dstore 3 /* item */
        start local 3 // double item
         3: .line 2774
            aload 0 /* this */
            dload 3 /* item */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.removeKey:(D)Ljava/lang/Object;
            pop
        end local 3 // double item
         4: .line 2771
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.DoubleIterator.hasNext:()Z
            ifne 2
         5: .line 2776
            aload 0 /* this */
            areturn
        end local 2 // org.eclipse.collections.api.iterator.DoubleIterator iterator
        end local 1 // org.eclipse.collections.api.DoubleIterable keys
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    6     1      keys  Lorg/eclipse/collections/api/DoubleIterable;
            1    6     2  iterator  Lorg/eclipse/collections/api/iterator/DoubleIterator;
            3    4     3      item  D
    Signature: (Lorg/eclipse/collections/api/DoubleIterable;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap<TV;>;
    MethodParameters:
      Name  Flags
      keys  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> withKeysValues(double, V, double, V);
    descriptor: (DLjava/lang/Object;DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key1
        start local 3 // java.lang.Object value1
        start local 4 // double key2
        start local 6 // java.lang.Object value2
         0: .line 2781
            aload 0 /* this */
            dload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2782
            aload 0 /* this */
            dload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2783
            aload 0 /* this */
            areturn
        end local 6 // java.lang.Object value2
        end local 4 // double key2
        end local 3 // java.lang.Object value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    3     1    key1  D
            0    3     3  value1  TV;
            0    3     4    key2  D
            0    3     6  value2  TV;
    Signature: (DTV;DTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> withKeysValues(double, V, double, V, double, V);
    descriptor: (DLjava/lang/Object;DLjava/lang/Object;DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=7
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key1
        start local 3 // java.lang.Object value1
        start local 4 // double key2
        start local 6 // java.lang.Object value2
        start local 7 // double key3
        start local 9 // java.lang.Object value3
         0: .line 2788
            aload 0 /* this */
            dload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2789
            aload 0 /* this */
            dload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2790
            aload 0 /* this */
            dload 7 /* key3 */
            aload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 2791
            aload 0 /* this */
            areturn
        end local 9 // java.lang.Object value3
        end local 7 // double key3
        end local 6 // java.lang.Object value2
        end local 4 // double key2
        end local 3 // java.lang.Object value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    4     1    key1  D
            0    4     3  value1  TV;
            0    4     4    key2  D
            0    4     6  value2  TV;
            0    4     7    key3  D
            0    4     9  value3  TV;
    Signature: (DTV;DTV;DTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap<V> withKeysValues(double, V, double, V, double, V, double, V);
    descriptor: (DLjava/lang/Object;DLjava/lang/Object;DLjava/lang/Object;DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=13, args_size=9
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key1
        start local 3 // java.lang.Object value1
        start local 4 // double key2
        start local 6 // java.lang.Object value2
        start local 7 // double key3
        start local 9 // java.lang.Object value3
        start local 10 // double key4
        start local 12 // java.lang.Object value4
         0: .line 2796
            aload 0 /* this */
            dload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2797
            aload 0 /* this */
            dload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2798
            aload 0 /* this */
            dload 7 /* key3 */
            aload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 2799
            aload 0 /* this */
            dload 10 /* key4 */
            aload 12 /* value4 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 2800
            aload 0 /* this */
            areturn
        end local 12 // java.lang.Object value4
        end local 10 // double key4
        end local 9 // java.lang.Object value3
        end local 7 // double key3
        end local 6 // java.lang.Object value2
        end local 4 // double key2
        end local 3 // java.lang.Object value1
        end local 1 // double key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    5     1    key1  D
            0    5     3  value1  TV;
            0    5     4    key2  D
            0    5     6  value2  TV;
            0    5     7    key3  D
            0    5     9  value3  TV;
            0    5    10    key4  D
            0    5    12  value4  TV;
    Signature: (DTV;DTV;DTV;DTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  

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

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

  public org.eclipse.collections.api.map.primitive.ImmutableDoubleObjectMap<V> toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableDoubleObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 2818
            getstatic org.eclipse.collections.impl.factory.primitive.DoubleObjectMaps.immutable:Lorg/eclipse/collections/api/factory/map/primitive/ImmutableDoubleObjectMapFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.map.primitive.ImmutableDoubleObjectMapFactory.withAll:(Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;)Lorg/eclipse/collections/api/map/primitive/ImmutableDoubleObjectMap;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/map/primitive/ImmutableDoubleObjectMap<TV;>;

  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.DoubleObjectHashMap this
        start local 1 // java.io.ObjectOutput out
         0: .line 2824
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 2825
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            ifnull 8
         2: .line 2827
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         3: .line 2829
            aload 1 /* out */
            dconst_0
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
         4: .line 2830
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         5: .line 2832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 8
         6: .line 2834
            aload 1 /* out */
            dconst_1
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
         7: .line 2835
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         8: .line 2838
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         9: goto 14
        10: .line 2840
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 13
        11: .line 2842
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 2 /* i */
            daload
            invokeinterface java.io.ObjectOutput.writeDouble:(D)V
        12: .line 2843
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
        13: .line 2838
      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.DoubleObjectHashMap.keys:[D
            arraylength
            if_icmplt 10
        end local 2 // int i
        15: .line 2846
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // java.io.ObjectInput in
         0: .line 2851
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 2852
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 2854
      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.readObject:()Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 2852
            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 2856
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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    

  private void addKeyValueAtIndex(double, V, );
    descriptor: (DLjava/lang/Object;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // java.lang.Object value
        start local 4 // int index
         0: .line 2860
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            daload
            dconst_1
            invokestatic java.lang.Double.compare:(DD)I
            ifne 2
         1: .line 2862
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
         2: .line 2864
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
            ifeq 4
         3: .line 2866
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeys:()V
         4: .line 2868
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* index */
            dload 1 /* key */
            dastore
         5: .line 2869
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aload 3 /* value */
            aastore
         6: .line 2870
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
         7: .line 2871
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
            iadd
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.maxOccupiedWithData:()I
            if_icmple 9
         8: .line 2873
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.rehashAndGrow:()V
         9: .line 2875
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   10     1    key  D
            0   10     3  value  TV;
            0   10     4  index  I
    Signature: (DTV;I)V
    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.DoubleObjectHashMap this
        start local 1 // int index
         0: .line 2879
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
            ifeq 2
         1: .line 2881
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeys:()V
         2: .line 2883
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 1 /* index */
            dconst_1
            dastore
         3: .line 2884
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            iload 1 /* index */
            aconst_null
            aastore
         4: .line 2885
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
         5: .line 2886
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
         6: .line 2887
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
         0: .line 2891
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            newarray 7
            astore 1 /* copy */
        start local 1 // double[] copy
         1: .line 2892
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iconst_0
            aload 1 /* copy */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 2893
            aload 0 /* this */
            aload 1 /* copy */
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
         3: .line 2894
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
         4: .line 2895
            return
        end local 1 // double[] copy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    5     1  copy  [D

  private static boolean nullSafeEquals(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Object value
        start local 1 // java.lang.Object other
         0: .line 2919
            aload 0 /* value */
            ifnonnull 3
         1: .line 2921
            aload 1 /* other */
            ifnonnull 5
         2: .line 2923
            iconst_1
            ireturn
         3: .line 2926
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            aload 0 /* value */
            if_acmpeq 4
            aload 0 /* value */
            aload 1 /* other */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 5
         4: .line 2928
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         5: .line 2930
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // java.lang.Object value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0  value  Ljava/lang/Object;
            0    6     1  other  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  
      other  

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

  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.DoubleObjectHashMap this
         0: .line 3022
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.size:()I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.smallestPowerOfTwoGreaterThan:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.rehash:(I)V
         1: .line 3023
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  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.DoubleObjectHashMap this
         0: .line 3027
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.maxOccupiedWithData:()I
            istore 1 /* max */
        start local 1 // int max
         1: .line 3028
            iload 1 /* max */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
            iconst_1
            iadd
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.smallestPowerOfTwoGreaterThan:(I)I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         2: .line 3029
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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.DoubleObjectHashMap.occupiedWithData:I
            if_icmpge 4
         3: .line 3031
            iload 2 /* newCapacity */
            iconst_1
            ishl
            istore 2 /* newCapacity */
         4: .line 3033
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.rehash:(I)V
         5: .line 3034
            return
        end local 2 // int newCapacity
        end local 1 // int max
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // int newCapacity
         0: .line 3038
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 3039
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            astore 3 /* old */
        start local 3 // double[] old
         2: .line 3040
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
            astore 4 /* oldValues */
        start local 4 // java.lang.Object[] oldValues
         3: .line 3041
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.allocateTable:(I)V
         4: .line 3042
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithData:I
         5: .line 3043
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.occupiedWithSentinels:I
         6: .line 3045
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 11
         8: .line 3047
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap int int double[] java.lang.Object[] int
      StackMap stack:
            aload 3 /* old */
            iload 5 /* i */
            daload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isNonSentinel:(D)Z
            ifeq 10
         9: .line 3049
            aload 0 /* this */
            aload 3 /* old */
            iload 5 /* i */
            daload
            aload 4 /* oldValues */
            iload 5 /* i */
            aaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            pop
        10: .line 3045
      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 3052
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.copyKeysOnWrite:Z
        13: .line 3053
            return
        end local 4 // java.lang.Object[] 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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0   14     1  newCapacity  I
            1   14     2    oldLength  I
            2   14     3          old  [D
            3   14     4    oldValues  [Ljava/lang/Object;
            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.DoubleObjectHashMap this
        start local 1 // double element
         0: .line 3058
            aload 0 /* this */
            dload 1 /* element */
            d2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.mask:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 3059
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 3 /* index */
            daload
            dstore 4 /* keyAtIndex */
        start local 4 // double keyAtIndex
         2: .line 3061
            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 3063
      StackMap locals: int double
      StackMap stack:
            iload 3 /* index */
            ireturn
         4: .line 3066
      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 3067
            iconst_1
            istore 7 /* i */
        start local 7 // int i
         8: goto 20
         9: .line 3069
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            istore 8 /* nextIndex */
        start local 8 // int nextIndex
        10: .line 3070
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 8 /* nextIndex */
            daload
            dstore 4 /* keyAtIndex */
        11: .line 3071
            dload 4 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 13
        12: .line 3073
            iload 8 /* nextIndex */
            ireturn
        13: .line 3075
      StackMap locals: int
      StackMap stack:
            dload 4 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 17
        14: .line 3077
            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 3079
      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 3081
            iload 8 /* nextIndex */
            istore 6 /* removedIndex */
        end local 8 // int nextIndex
        19: .line 3067
      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 3084
            aload 0 /* this */
            dload 1 /* element */
            iload 6 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 3089
            aload 0 /* this */
            dload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.spreadTwoAndMask:(D)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 3090
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 14
         3: .line 3092
      StackMap locals: int int
      StackMap stack:
            iload 4 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         4: .line 3093
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 6 /* nextIndex */
            daload
            dstore 7 /* keyAtIndex */
        start local 7 // double keyAtIndex
         5: .line 3094
            dload 7 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 7
         6: .line 3096
            iload 6 /* nextIndex */
            ireturn
         7: .line 3098
      StackMap locals: int double
      StackMap stack:
            dload 7 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 11
         8: .line 3100
            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 3102
      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 3104
            iload 6 /* nextIndex */
            istore 3 /* removedIndex */
        end local 7 // double keyAtIndex
        end local 6 // int nextIndex
        13: .line 3090
      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 3107
            aload 0 /* this */
            dload 1 /* element */
            iload 3 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // double element
        start local 3 // int removedIndex
         0: .line 3112
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadOne:(D)J
            l2i
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
         1: .line 3113
            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 3117
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextIndex */
            iload 5 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.mask:(I)I
            istore 4 /* nextIndex */
         3: .line 3118
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            iload 4 /* nextIndex */
            daload
            dstore 6 /* keyAtIndex */
        start local 6 // double keyAtIndex
         4: .line 3119
            dload 6 /* keyAtIndex */
            dload 1 /* element */
            invokestatic java.lang.Double.compare:(DD)I
            ifne 6
         5: .line 3121
            iload 4 /* nextIndex */
            ireturn
         6: .line 3123
      StackMap locals: double
      StackMap stack:
            dload 6 /* keyAtIndex */
            dconst_0
            invokestatic java.lang.Double.compare:(DD)I
            ifne 10
         7: .line 3125
            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 3127
      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 3129
            iload 4 /* nextIndex */
            istore 3 /* removedIndex */
        end local 6 // double keyAtIndex
        12: .line 3115
            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.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // double element
         0: .line 3137
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadOne:(D)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 3138
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // double element
         0: .line 3143
            dload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.doubleSpreadTwo:(D)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 3144
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // double element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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.DoubleObjectHashMap this
        start local 1 // int spread
         0: .line 3149
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  private void allocateTable(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // int sizeToAllocate
         0: .line 3154
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            newarray 7
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
         1: .line 3155
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            anewarray java.lang.Object
            putfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.values:[Ljava/lang/Object;
         2: .line 3156
            return
        end local 1 // int sizeToAllocate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            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 3160
            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 3165
            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 3170
            dload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.isEmptyKey:(D)Z
            ifne 1
            dload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.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   

  private int maxOccupiedWithData();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 3175
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.keys:[D
            arraylength
            istore 1 /* capacity */
        start local 1 // int capacity
         1: .line 3177
            iload 1 /* capacity */
            iconst_1
            isub
            iload 1 /* capacity */
            iconst_1
            ishr
            invokestatic java.lang.Math.min:(II)I
            ireturn
        end local 1 // int capacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    2     1  capacity  I

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

  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.DoubleObjectHashMap this
         0: .line 4041
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysView
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.DoubleObjectPair<V>> 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.DoubleObjectHashMap this
         0: .line 4047
            new org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeyValuesView
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeyValuesView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/primitive/DoubleObjectPair<TV;>;>;

  public org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap<V> flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
         0: .line 4053
            getstatic org.eclipse.collections.impl.factory.primitive.ObjectDoubleMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableObjectDoubleMapFactory;
            invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableObjectDoubleMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            astore 1 /* result */
        start local 1 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
         1: .line 4054
            aload 0 /* this */
            aload 1 /* result */
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;
              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:
                  (DLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;DLjava/lang/Object;)V (6)
                  (DLjava/lang/Object;)V
                  1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;)V
         2: .line 4062
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            1    3     1  result  Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap<TV;>;

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByInt(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sumByInt:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collectIf(org.eclipse.collections.api.block.predicate.Predicate, org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectIf:(Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap withKeyValue(double, java.lang.Object);
    descriptor: (DLjava/lang/Object;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
         0: .line 1
            aload 0
            dload 1
            aload 3
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.withKeyValue:(DLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/RichIterable;
    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.DoubleObjectHashMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.UnsortedSetIterable zipWithIndex();
    descriptor: ()Lorg/eclipse/collections/api/set/UnsortedSetIterable;
    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.DoubleObjectHashMap.zipWithIndex:()Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag zip(java.lang.Iterable);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Iterable
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.zip:(Ljava/lang/Iterable;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag flatCollect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.flatCollect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.CharIterable collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/CharIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.CharBag collectChar(org.eclipse.collections.api.block.function.primitive.CharFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/CharBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.CharFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectChar:(Lorg/eclipse/collections/api/block/function/primitive/CharFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableCharBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.IntIterable collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/IntIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.IntBag collectInt(org.eclipse.collections.api.block.function.primitive.IntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/IntBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.IntFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectInt:(Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableIntBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/LongIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.LongBag collectLong(org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/LongBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectLong:(Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag rejectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.rejectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ByteIterable collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/ByteIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.ByteBag collectByte(org.eclipse.collections.api.block.function.primitive.ByteFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/ByteBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ByteFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectByte:(Lorg/eclipse/collections/api/block/function/primitive/ByteFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableByteBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectLongMap sumByLong(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.LongFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectLongMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.LongFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sumByLong:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/LongFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.bag.PartitionBag partition(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.partition:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.DoubleIterable collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/DoubleIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.DoubleBag collectDouble(org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/DoubleBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectDouble:(Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableDoubleBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag reject(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.DoubleObjectMap reject(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap reject(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupByEach(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByEach:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag collectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag select(org.eclipse.collections.api.block.predicate.Predicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.select:(Lorg/eclipse/collections/api/block/predicate/Predicate;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.DoubleObjectMap select(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap select(org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.primitive.DoubleObjectPredicate
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleObjectPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.ShortIterable collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/ShortIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.ShortBag collectShort(org.eclipse.collections.api.block.function.primitive.ShortFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/ShortBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.ShortFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectShort:(Lorg/eclipse/collections/api/block/function/primitive/ShortFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableShortBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.DoubleObjectMap tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/DoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.MutableDoubleObjectMap tap(org.eclipse.collections.api.block.procedure.Procedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.procedure.Procedure
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.tap:(Lorg/eclipse/collections/api/block/procedure/Procedure;)Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.FloatIterable collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/FloatIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.FloatBag collectFloat(org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/FloatBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectFloat:(Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableFloatBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.Multimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/Multimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.multimap.bag.BagMultimap groupBy(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/BagMultimap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupBy:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/multimap/bag/MutableBagMultimap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByDouble(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.DoubleFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.DoubleFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sumByDouble:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.selectWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.PartitionIterable partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/PartitionIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.partition.bag.PartitionBag partitionWith(org.eclipse.collections.api.block.predicate.Predicate2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.predicate.Predicate2
            aload 2
            checkcast java.lang.Object
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.partitionWith:(Lorg/eclipse/collections/api/block/predicate/Predicate2;Ljava/lang/Object;)Lorg/eclipse/collections/api/partition/bag/PartitionMutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.map.primitive.MutablePrimitiveObjectMap.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable flatCollectWith(org.eclipse.collections.api.block.function.Function2, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function2
            aload 2
            checkcast java.lang.Object
            invokeinterface org.eclipse.collections.api.map.primitive.MutablePrimitiveObjectMap.flatCollectWith:(Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.ObjectDoubleMap sumByFloat(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.primitive.FloatFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/ObjectDoubleMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.primitive.FloatFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.sumByFloat:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/primitive/FloatFunction;)Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable aggregateBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.function.Function2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.function.Function2
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.aggregateBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/RichIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.Bag selectInstancesOf(java.lang.Class);
    descriptor: (Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Class
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.selectInstancesOf:(Ljava/lang/Class;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.BooleanIterable collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/BooleanIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.bag.primitive.BooleanBag collectBoolean(org.eclipse.collections.api.block.function.primitive.BooleanFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/BooleanBag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.primitive.BooleanFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collectBoolean:(Lorg/eclipse/collections/api/block/function/primitive/BooleanFunction;)Lorg/eclipse/collections/api/bag/primitive/MutableBooleanBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.bag.Bag collect(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/Bag;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.collect:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/bag/MutableBag;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.map.MapIterable aggregateInPlaceBy(org.eclipse.collections.api.block.function.Function, org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.block.procedure.Procedure2);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            aload 2
            checkcast org.eclipse.collections.api.block.function.Function0
            aload 3
            checkcast org.eclipse.collections.api.block.procedure.Procedure2
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.aggregateInPlaceBy:(Lorg/eclipse/collections/api/block/function/Function;Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/procedure/Procedure2;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.MapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.UnsortedMapIterable groupByUniqueKey(org.eclipse.collections.api.block.function.Function);
    descriptor: (Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/UnsortedMapIterable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.block.function.Function
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.groupByUniqueKey:(Lorg/eclipse/collections/api/block/function/Function;)Lorg/eclipse/collections/api/map/MutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(java.lang.Object[], java.lang.Object, int);
    descriptor: ([Ljava/lang/Object;Ljava/lang/Object;I)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 1 // java.lang.Object each
        start local 2 // int index
         0: .line 502
            aload 0
            iload 2 /* index */
            aload 1 /* each */
            dup_x2
            aastore
            return
        end local 2 // int index
        end local 1 // java.lang.Object each
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     1   each  Ljava/lang/Object;
            0    1     2  index  I

  private void lambda$1(double, java.lang.Object);
    descriptor: (DLjava/lang/Object;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
        start local 1 // double key
        start local 3 // java.lang.Object value
         0: .line 2328
            aload 0 /* this */
            dload 1 /* key */
            aload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap.put:(DLjava/lang/Object;)Ljava/lang/Object;
            return
        end local 3 // java.lang.Object value
        end local 1 // double key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap<TV;>;
            0    1     1    key  D
            0    1     3  value  TV;

  private static void lambda$2(org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap, double, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;DLjava/lang/Object;)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 // java.lang.Object value
         0: .line 4056
            aload 0
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap.containsKey:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 4058
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* value */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " found at key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap.get:(Ljava/lang/Object;)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 4060
      StackMap locals:
      StackMap stack:
            aload 0
            aload 3 /* value */
            dload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap.put:(Ljava/lang/Object;D)V
         3: .line 4061
            return
        end local 3 // java.lang.Object value
        end local 1 // double key
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     1    key  D
            0    4     3  value  TV;

  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
          -1647345005: 1
          -1647345004: 2
          -1647345003: 3
              default: 4
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "lambda$0"
            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 "lambda$1"
            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 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            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 "(Ljava/lang/Object;I)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/DoubleObjectHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "([Ljava/lang/Object;Ljava/lang/Object;I)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 java.lang.Object[]
            invokedynamic value([Ljava/lang/Object;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              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:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$0([Ljava/lang/Object;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         6: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure"
            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 "(DLjava/lang/Object;)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/DoubleObjectHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(DLjava/lang/Object;)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.DoubleObjectHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;
              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:
                  (DLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$1(DLjava/lang/Object;)V (7)
                  (DLjava/lang/Object;)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/DoubleObjectProcedure"
            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 "(DLjava/lang/Object;)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/DoubleObjectHashMap"
            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/MutableObjectDoubleMap;DLjava/lang/Object;)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.MutableObjectDoubleMap
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;)Lorg/eclipse/collections/api/block/procedure/primitive/DoubleObjectProcedure;
              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:
                  (DLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/DoubleObjectHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableObjectDoubleMap;DLjava/lang/Object;)V (6)
                  (DLjava/lang/Object;)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
}
Signature: <V:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/map/primitive/MutableDoubleObjectMap<TV;>;Ljava/io/Externalizable;
SourceFile: "DoubleObjectHashMap.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$InternalIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeySet  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeySet$1  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeyValuesView  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeyValuesView$InternalKeyValuesIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysSetIterator  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysView  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues  org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$ValuesCollection
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private InternalIterator = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$InternalIterator of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  private KeySet = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeySet of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  private KeyValuesView = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeyValuesView of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  private KeysSetIterator = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysSetIterator of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  private KeysView = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$KeysView of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  private final SentinelValues = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$SentinelValues of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap
  protected ValuesCollection = org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap$ValuesCollection of org.eclipse.collections.impl.map.mutable.primitive.DoubleObjectHashMap