public class org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap extends org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap implements org.eclipse.collections.api.map.primitive.MutableIntDoubleMap, java.io.Externalizable, org.eclipse.collections.impl.map.mutable.primitive.MutableIntKeysMap
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
super_class: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap
{
private static final double EMPTY_VALUE;
descriptor: D
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 0.0
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 1
private static final int EMPTY_KEY;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 0
private static final int REMOVED_KEY;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 1
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: 4
private static final int INITIAL_LINEAR_PROBE;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 8
private static final int DEFAULT_INITIAL_CAPACITY;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 8
private int[] keys;
descriptor: [I
flags: (0x0002) ACC_PRIVATE
private double[] values;
descriptor: [D
flags: (0x0002) ACC_PRIVATE
private int occupiedWithData;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private int occupiedWithSentinels;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues sentinelValues;
descriptor: Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
flags: (0x0002) ACC_PRIVATE
private boolean copyKeysOnWrite;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap.<init>:()V
1: aload 0
bipush 16
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.allocateTable:(I)V
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public void <init>(int);
descriptor: (I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap.<init>:()V
1: iload 1
ifge 3
2: new java.lang.IllegalArgumentException
dup
ldc "initial capacity cannot be less than 0"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap int
StackMap stack:
aload 0
iload 1
iconst_1
ishl
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.smallestPowerOfTwoGreaterThan:(I)I
istore 2
start local 2 4: aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.allocateTable:(I)V
5: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 6 1 initialCapacity I
4 6 2 capacity I
MethodParameters:
Name Flags
initialCapacity
public void <init>(org.eclipse.collections.api.map.primitive.IntDoubleMap);
descriptor: (Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap.<init>:()V
1: aload 1
instanceof org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
ifeq 9
aload 1
checkcast org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
ifne 9
2: aload 1
checkcast org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
astore 2
start local 2 3: aload 0
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
4: aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
5: aload 0
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.copy:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
6: StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap org.eclipse.collections.api.map.primitive.IntDoubleMap org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
StackMap stack:
aload 0
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
invokestatic java.util.Arrays.copyOf:([II)[I
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
7: aload 0
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
aload 2
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
arraylength
invokestatic java.util.Arrays.copyOf:([DI)[D
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
end local 2 8: goto 12
9: StackMap locals:
StackMap stack:
aload 0
aload 1
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.size:()I
bipush 8
invokestatic java.lang.Math.max:(II)I
iconst_1
ishl
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.smallestPowerOfTwoGreaterThan:(I)I
istore 2
start local 2 10: aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.allocateTable:(I)V
11: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.putAll:(Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;)V
end local 2 12: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 map Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
3 8 2 hashMap Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
10 12 2 capacity I
MethodParameters:
Name Flags
map
public static org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap newWithKeysValues(int, double);
descriptor: (ID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
iconst_1
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:(I)V
iload 0
dload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withKeyValue:(ID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 key1 I
0 1 1 value1 D
MethodParameters:
Name Flags
key1
value1
public static org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap newWithKeysValues(int, double, int, double);
descriptor: (IDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=7, locals=6, args_size=4
start local 0 start local 1 start local 3 start local 4 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
iconst_2
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:(I)V
iload 0
dload 1
iload 3
dload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withKeysValues:(IDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 key1 I
0 1 1 value1 D
0 1 3 key2 I
0 1 4 value2 D
MethodParameters:
Name Flags
key1
value1
key2
value2
public static org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap newWithKeysValues(int, double, int, double, int, double);
descriptor: (IDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=10, locals=9, args_size=6
start local 0 start local 1 start local 3 start local 4 start local 6 start local 7 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
iconst_3
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:(I)V
iload 0
dload 1
iload 3
dload 4
iload 6
dload 7
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withKeysValues:(IDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
end local 7 end local 6 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 key1 I
0 1 1 value1 D
0 1 3 key2 I
0 1 4 value2 D
0 1 6 key3 I
0 1 7 value3 D
MethodParameters:
Name Flags
key1
value1
key2
value2
key3
value3
public static org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap newWithKeysValues(int, double, int, double, int, double, int, double);
descriptor: (IDIDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=13, locals=12, args_size=8
start local 0 start local 1 start local 3 start local 4 start local 6 start local 7 start local 9 start local 10 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
iconst_4
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:(I)V
iload 0
dload 1
iload 3
dload 4
iload 6
dload 7
iload 9
dload 10
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withKeysValues:(IDIDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
end local 10 end local 9 end local 7 end local 6 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 key1 I
0 1 1 value1 D
0 1 3 key2 I
0 1 4 value2 D
0 1 6 key3 I
0 1 7 value3 D
0 1 9 key4 I
0 1 10 value4 D
MethodParameters:
Name Flags
key1
value1
key2
value2
key3
value3
key4
value4
private int smallestPowerOfTwoGreaterThan(int);
descriptor: (I)I
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: iload 1
iconst_1
if_icmple 1
iload 1
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 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 3 1 n I
MethodParameters:
Name Flags
n
protected int getOccupiedWithData();
descriptor: ()I
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
protected org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues getSentinelValues();
descriptor: ()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
protected void setSentinelValuesNull();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
aconst_null
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
protected double getEmptyValue();
descriptor: ()D
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=1, args_size=1
start local 0 0: dconst_0
dreturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
protected int getTableSize();
descriptor: ()I
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
arraylength
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
protected double getValueAtIndex(int);
descriptor: (I)D
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 1
daload
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 1 1 index I
MethodParameters:
Name Flags
index
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=5, args_size=2
start local 0 start local 1 0: aload 0
aload 1
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 1
instanceof org.eclipse.collections.api.map.primitive.IntDoubleMap
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
checkcast org.eclipse.collections.api.map.primitive.IntDoubleMap
astore 2
start local 2 5: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.size:()I
aload 2
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.size:()I
if_icmpeq 7
6: iconst_0
ireturn
7: StackMap locals: org.eclipse.collections.api.map.primitive.IntDoubleMap
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 10
8: aload 2
iconst_0
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.containsKey:(I)Z
ifne 9
aload 2
iconst_1
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.containsKey:(I)Z
ifeq 14
9: StackMap locals:
StackMap stack:
iconst_0
ireturn
10: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 12
aload 2
iconst_0
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.containsKey:(I)Z
ifeq 11
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
aload 2
iconst_0
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.getOrThrow:(I)D
invokestatic java.lang.Double.compare:(DD)I
ifeq 12
11: StackMap locals:
StackMap stack:
iconst_0
ireturn
12: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 14
aload 2
iconst_1
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.containsKey:(I)Z
ifeq 13
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
aload 2
iconst_1
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.getOrThrow:(I)D
invokestatic java.lang.Double.compare:(DD)I
ifeq 14
13: StackMap locals:
StackMap stack:
iconst_0
ireturn
14: StackMap locals:
StackMap stack:
iconst_0
istore 3
start local 3 15: goto 20
16: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
istore 4
start local 4 17: iload 4
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 19
aload 2
iload 4
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.containsKey:(I)Z
ifeq 18
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
aload 2
iload 4
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.getOrThrow:(I)D
invokestatic java.lang.Double.compare:(DD)I
ifeq 19
18: StackMap locals: int
StackMap stack:
iconst_0
ireturn
end local 4 19: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
20: iload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 16
end local 3 21: iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 22 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 22 1 obj Ljava/lang/Object;
5 22 2 other Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
15 21 3 i I
17 19 4 key I
MethodParameters:
Name Flags
obj
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=3, args_size=1
start local 0 0: iconst_0
istore 1
start local 1 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 4
3: iload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokestatic java.lang.Double.doubleToLongBits:(D)J
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokestatic java.lang.Double.doubleToLongBits:(D)J
bipush 32
lushr
lxor
l2i
iadd
istore 1
4: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 6
5: iload 1
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokestatic java.lang.Double.doubleToLongBits:(D)J
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokestatic java.lang.Double.doubleToLongBits:(D)J
bipush 32
lushr
lxor
l2i
ixor
iadd
istore 1
6: StackMap locals:
StackMap stack:
iconst_0
istore 2
start local 2 7: goto 11
8: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 10
9: iload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
invokestatic java.lang.Double.doubleToLongBits:(D)J
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
invokestatic java.lang.Double.doubleToLongBits:(D)J
bipush 32
lushr
lxor
l2i
ixor
iadd
istore 1
10: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
11: iload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 8
end local 2 12: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
1 13 1 result I
7 12 2 i I
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=5, args_size=1
start local 0 0: new java.lang.StringBuilder
dup
invokespecial java.lang.StringBuilder.<init>:()V
astore 1
start local 1 1: aload 1
ldc "{"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
2: iconst_1
istore 2
start local 2 3: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 12
4: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 7
5: aload 1
iconst_0
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc "="
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
pop
6: iconst_0
istore 2
7: StackMap locals: java.lang.StringBuilder int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 12
8: iload 2
ifne 10
9: aload 1
ldc ", "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
10: StackMap locals:
StackMap stack:
aload 1
iconst_1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc "="
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
pop
11: iconst_0
istore 2
12: StackMap locals:
StackMap stack:
iconst_0
istore 3
start local 3 13: goto 21
14: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
istore 4
start local 4 15: iload 4
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 20
16: iload 2
ifne 18
17: aload 1
ldc ", "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
18: StackMap locals: int
StackMap stack:
aload 1
iload 4
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc "="
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
pop
19: iconst_0
istore 2
end local 4 20: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
21: iload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 14
end local 3 22: aload 1
ldc "}"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
23: aload 1
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 24 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
1 24 1 appendable Ljava/lang/StringBuilder;
3 24 2 first Z
13 22 3 i I
15 20 4 key I
public org.eclipse.collections.api.iterator.MutableDoubleIterator doubleIterator();
descriptor: ()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$InternalDoubleIterator
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$InternalDoubleIterator.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public <V> V injectInto(V, org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction<? super V, ? extends V>);
descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 1
astore 3
start local 3 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 4
3: aload 2
aload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
astore 3
4: StackMap locals: java.lang.Object
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 6
5: aload 2
aload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
astore 3
6: StackMap locals:
StackMap stack:
iconst_0
istore 4
start local 4 7: goto 11
8: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 10
9: aload 2
aload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction.valueOf:(Ljava/lang/Object;D)Ljava/lang/Object;
astore 3
10: StackMap locals:
StackMap stack:
iinc 4 1
StackMap locals:
StackMap stack:
11: iload 4
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 8
end local 4 12: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 injectedValue TV;
0 13 2 function Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TV;+TV;>;
1 13 3 result TV;
7 12 4 i I
Signature: <V:Ljava/lang/Object;>(TV;Lorg/eclipse/collections/api/block/function/primitive/ObjectDoubleToObjectFunction<-TV;+TV;>;)TV;
MethodParameters:
Name Flags
injectedValue
function
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
aconst_null
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
1: aload 0
iconst_0
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
2: aload 0
iconst_0
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
3: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeysOnWrite:Z
ifeq 5
4: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeys:()V
5: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iconst_0
invokestatic java.util.Arrays.fill:([II)V
6: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
dconst_0
invokestatic java.util.Arrays.fill:([DD)V
7: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public void put(int, double);
descriptor: (ID)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=6, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 3
1: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.putForEmptySentinel:(D)V
2: return
3: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 6
4: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.putForRemovedSentinel:(D)V
5: return
6: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
istore 5
start local 5 8: iload 5
iload 1
if_icmpne 11
9: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
dload 2
dastore
10: goto 12
11: StackMap locals: int int
StackMap stack:
aload 0
iload 1
dload 2
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
12: StackMap locals:
StackMap stack:
return
end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 key I
0 13 2 value D
7 13 4 index I
8 13 5 keyAtIndex I
MethodParameters:
Name Flags
key
value
private void putForRemovedSentinel(double);
descriptor: (D)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 2
1: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
2: StackMap locals:
StackMap stack:
aload 0
dload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 4 1 value D
MethodParameters:
Name Flags
value
private void putForEmptySentinel(double);
descriptor: (D)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 2
1: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
2: StackMap locals:
StackMap stack:
aload 0
dload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 4 1 value D
MethodParameters:
Name Flags
value
public void putAll(org.eclipse.collections.api.map.primitive.IntDoubleMap);
descriptor: (Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
aload 0
invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;
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:
(ID)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.put(ID)V (5)
(ID)V
1
invokeinterface org.eclipse.collections.api.map.primitive.IntDoubleMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 map Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
MethodParameters:
Name Flags
map
public void updateValues(org.eclipse.collections.api.block.function.primitive.IntDoubleToDoubleFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntDoubleToDoubleFunction;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 5
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 3
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
aload 1
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.IntDoubleToDoubleFunction.valueOf:(ID)D
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 5
4: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
aload 1
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.IntDoubleToDoubleFunction.valueOf:(ID)D
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
5: StackMap locals:
StackMap stack:
iconst_0
istore 2
start local 2 6: goto 10
7: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 9
8: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
invokeinterface org.eclipse.collections.api.block.function.primitive.IntDoubleToDoubleFunction.valueOf:(ID)D
dastore
9: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
10: iload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 7
end local 2 11: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 12 1 function Lorg/eclipse/collections/api/block/function/primitive/IntDoubleToDoubleFunction;
6 11 2 i I
MethodParameters:
Name Flags
function
public void removeKey(int);
descriptor: (I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 5
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifne 3
2: StackMap locals:
StackMap stack:
return
3: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeEmptyKey:()V
4: return
5: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 10
6: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 7
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifne 8
7: StackMap locals:
StackMap stack:
return
8: StackMap locals:
StackMap stack:
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeRemovedKey:()V
9: return
10: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 2
start local 2 11: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
iload 1
if_icmpne 13
12: aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeKeyAtIndex:(I)V
13: StackMap locals: int
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 14 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 14 1 key I
11 14 2 index I
MethodParameters:
Name Flags
key
public void remove(int);
descriptor: (I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeKey:(I)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 key I
MethodParameters:
Name Flags
key
public double removeKeyIfAbsent(int, double);
descriptor: (ID)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=7, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 6
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifne 3
2: StackMap locals:
StackMap stack:
dload 2
dreturn
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dstore 4
start local 4 4: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeEmptyKey:()V
5: dload 4
dreturn
end local 4 6: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 12
7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 8
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifne 9
8: StackMap locals:
StackMap stack:
dload 2
dreturn
9: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dstore 4
start local 4 10: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeRemovedKey:()V
11: dload 4
dreturn
end local 4 12: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 13: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 17
14: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dstore 5
start local 5 15: aload 0
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeKeyAtIndex:(I)V
16: dload 5
dreturn
end local 5 17: StackMap locals: int
StackMap stack:
dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 18 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 18 1 key I
0 18 2 value D
4 6 4 oldValue D
10 12 4 oldValue D
13 18 4 index I
15 17 5 oldValue D
MethodParameters:
Name Flags
key
value
public double getIfAbsentPut(int, double);
descriptor: (ID)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 9
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 5
2: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
3: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
4: dload 2
dreturn
5: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 7
6: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
7: StackMap locals:
StackMap stack:
aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
8: dload 2
dreturn
9: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 18
10: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 14
11: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
12: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
13: dload 2
dreturn
14: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 16
15: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
16: StackMap locals:
StackMap stack:
aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
17: dload 2
dreturn
18: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 19: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 21
20: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
21: StackMap locals: int
StackMap stack:
aload 0
iload 1
dload 2
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
22: dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 23 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 23 1 key I
0 23 2 value D
19 23 4 index I
MethodParameters:
Name Flags
key
value
public double getIfAbsentPut(int, org.eclipse.collections.api.block.function.primitive.DoubleFunction0);
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/DoubleFunction0;)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=6, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 11
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 6
2: aload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction0.value:()D
dstore 3
start local 3 3: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
4: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
5: dload 3
dreturn
end local 3 6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 8
7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
8: StackMap locals:
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction0.value:()D
dstore 3
start local 3 9: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
10: dload 3
dreturn
end local 3 11: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 22
12: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 17
13: aload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction0.value:()D
dstore 3
start local 3 14: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
15: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
16: dload 3
dreturn
end local 3 17: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 19
18: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
19: StackMap locals:
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction0.value:()D
dstore 3
start local 3 20: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
21: dload 3
dreturn
end local 3 22: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 3
start local 3 23: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
iload 1
if_icmpne 25
24: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
dreturn
25: StackMap locals: int
StackMap stack:
aload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction0.value:()D
dstore 4
start local 4 26: aload 0
iload 1
dload 4
iload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
27: dload 4
dreturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 28 1 key I
0 28 2 function Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction0;
3 6 3 value D
9 11 3 value D
14 17 3 value D
20 22 3 value D
23 28 3 index I
26 28 4 value D
MethodParameters:
Name Flags
key
function
public <P> double getIfAbsentPutWith(int, org.eclipse.collections.api.block.function.primitive.DoubleFunction<? super P>, );
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/DoubleFunction;Ljava/lang/Object;)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=7, args_size=4
start local 0 start local 1 start local 2 start local 3 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 11
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 6
2: aload 2
aload 3
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
dstore 4
start local 4 3: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
4: aload 0
dload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
5: dload 4
dreturn
end local 4 6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 8
7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
8: StackMap locals:
StackMap stack:
aload 2
aload 3
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
dstore 4
start local 4 9: aload 0
dload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
10: dload 4
dreturn
end local 4 11: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 22
12: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 17
13: aload 2
aload 3
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
dstore 4
start local 4 14: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
15: aload 0
dload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
16: dload 4
dreturn
end local 4 17: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 19
18: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
19: StackMap locals:
StackMap stack:
aload 2
aload 3
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
dstore 4
start local 4 20: aload 0
dload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
21: dload 4
dreturn
end local 4 22: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 23: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 25
24: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
25: StackMap locals: int
StackMap stack:
aload 2
aload 3
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleFunction.doubleValueOf:(Ljava/lang/Object;)D
dstore 5
start local 5 26: aload 0
iload 1
dload 5
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
27: dload 5
dreturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 28 1 key I
0 28 2 function Lorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TP;>;
0 28 3 parameter TP;
3 6 4 value D
9 11 4 value D
14 17 4 value D
20 22 4 value D
23 28 4 index I
26 28 5 value D
Signature: <P:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/primitive/DoubleFunction<-TP;>;TP;)D
MethodParameters:
Name Flags
key
function
parameter
public double getIfAbsentPutWithKey(int, org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction);
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntToDoubleFunction;)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=6, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 11
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 6
2: aload 2
iload 1
invokeinterface org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction.valueOf:(I)D
dstore 3
start local 3 3: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
4: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
5: dload 3
dreturn
end local 3 6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 8
7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
8: StackMap locals:
StackMap stack:
aload 2
iload 1
invokeinterface org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction.valueOf:(I)D
dstore 3
start local 3 9: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
10: dload 3
dreturn
end local 3 11: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 22
12: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 17
13: aload 2
iload 1
invokeinterface org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction.valueOf:(I)D
dstore 3
start local 3 14: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
15: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
16: dload 3
dreturn
end local 3 17: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 19
18: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
19: StackMap locals:
StackMap stack:
aload 2
iload 1
invokeinterface org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction.valueOf:(I)D
dstore 3
start local 3 20: aload 0
dload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
21: dload 3
dreturn
end local 3 22: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 3
start local 3 23: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
iload 1
if_icmpne 25
24: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
dreturn
25: StackMap locals: int
StackMap stack:
aload 2
iload 1
invokeinterface org.eclipse.collections.api.block.function.primitive.IntToDoubleFunction.valueOf:(I)D
dstore 4
start local 4 26: aload 0
iload 1
dload 4
iload 3
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
27: dload 4
dreturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 28 1 key I
0 28 2 function Lorg/eclipse/collections/api/block/function/primitive/IntToDoubleFunction;
3 6 3 value D
9 11 3 value D
14 17 3 value D
20 22 3 value D
23 28 3 index I
26 28 4 value D
MethodParameters:
Name Flags
key
function
public double addToValue(int, double);
descriptor: (ID)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=5, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 10
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 5
2: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
3: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
4: goto 9
5: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 8
6: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dload 2
dadd
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
7: goto 9
8: StackMap locals:
StackMap stack:
aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
9: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
10: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 20
11: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 15
12: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
13: aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
14: goto 19
15: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 18
16: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dload 2
dadd
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
17: goto 19
18: StackMap locals:
StackMap stack:
aload 0
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
19: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
20: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 21: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 24
22: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
dup2
daload
dload 2
dadd
dastore
23: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
24: StackMap locals: int
StackMap stack:
aload 0
iload 1
dload 2
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
25: dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 26 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 26 1 key I
0 26 2 toBeAdded D
21 26 4 index I
MethodParameters:
Name Flags
key
toBeAdded
private void addKeyValueAtIndex(int, double, int);
descriptor: (IDI)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 4 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iconst_1
if_icmpne 2
1: aload 0
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
iconst_1
isub
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
2: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeysOnWrite:Z
ifeq 4
3: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeys:()V
4: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iload 1
iastore
5: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
dload 2
dastore
6: aload 0
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
iconst_1
iadd
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
7: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
iadd
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.maxOccupiedWithData:()I
if_icmple 9
8: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.rehashAndGrow:()V
9: StackMap locals:
StackMap stack:
return
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 10 1 key I
0 10 2 value D
0 10 4 index I
MethodParameters:
Name Flags
key
value
index
private void removeKeyAtIndex(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeysOnWrite:Z
ifeq 2
1: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeys:()V
2: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 1
iconst_1
iastore
3: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 1
dconst_0
dastore
4: aload 0
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
iconst_1
isub
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
5: aload 0
dup
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
iconst_1
iadd
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
6: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
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 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
newarray 10
astore 1
start local 1 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iconst_0
aload 1
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
2: aload 0
aload 1
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
3: aload 0
iconst_0
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.copyKeysOnWrite:Z
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
1 5 1 copy [I
public double updateValue(int, double, org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction);
descriptor: (IDLorg/eclipse/collections/api/block/function/primitive/DoubleToDoubleFunction;)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=8, args_size=4
start local 0 start local 1 start local 2 start local 4 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 10
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 5
2: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
3: aload 0
aload 4
dload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
4: goto 9
5: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 8
6: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
aload 4
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
7: goto 9
8: StackMap locals:
StackMap stack:
aload 0
aload 4
dload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addEmptyKeyValue:(D)V
9: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
10: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 20
11: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnonnull 15
12: aload 0
new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.<init>:()V
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
13: aload 0
aload 4
dload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
14: goto 19
15: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 18
16: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
aload 4
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
17: goto 19
18: StackMap locals:
StackMap stack:
aload 0
aload 4
dload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addRemovedKeyValue:(D)V
19: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
20: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 5
start local 5 21: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 5
iaload
iload 1
if_icmpne 24
22: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 5
aload 4
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 5
daload
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
dastore
23: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 5
daload
dreturn
24: StackMap locals: int
StackMap stack:
aload 4
dload 2
invokeinterface org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction.valueOf:(D)D
dstore 6
start local 6 25: aload 0
iload 1
dload 6
iload 5
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.addKeyValueAtIndex:(IDI)V
26: dload 6
dreturn
end local 6 end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 27 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 27 1 key I
0 27 2 initialValueIfAbsent D
0 27 4 function Lorg/eclipse/collections/api/block/function/primitive/DoubleToDoubleFunction;
21 27 5 index I
25 27 6 value D
MethodParameters:
Name Flags
key
initialValueIfAbsent
function
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withKeyValue(int, double);
descriptor: (ID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
1: aload 0
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 key1 I
0 2 2 value1 D
MethodParameters:
Name Flags
key1
value1
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withKeysValues(int, double, int, double);
descriptor: (IDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=7, args_size=5
start local 0 start local 1 start local 2 start local 4 start local 5 0: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
1: aload 0
iload 4
dload 5
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
2: aload 0
areturn
end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 3 1 key1 I
0 3 2 value1 D
0 3 4 key2 I
0 3 5 value2 D
MethodParameters:
Name Flags
key1
value1
key2
value2
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withKeysValues(int, double, int, double, int, double);
descriptor: (IDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=10, args_size=7
start local 0 start local 1 start local 2 start local 4 start local 5 start local 7 start local 8 0: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
1: aload 0
iload 4
dload 5
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
2: aload 0
iload 7
dload 8
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
3: aload 0
areturn
end local 8 end local 7 end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 4 1 key1 I
0 4 2 value1 D
0 4 4 key2 I
0 4 5 value2 D
0 4 7 key3 I
0 4 8 value3 D
MethodParameters:
Name Flags
key1
value1
key2
value2
key3
value3
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withKeysValues(int, double, int, double, int, double, int, double);
descriptor: (IDIDIDID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=13, args_size=9
start local 0 start local 1 start local 2 start local 4 start local 5 start local 7 start local 8 start local 10 start local 11 0: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
1: aload 0
iload 4
dload 5
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
2: aload 0
iload 7
dload 8
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
3: aload 0
iload 10
dload 11
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
4: aload 0
areturn
end local 11 end local 10 end local 8 end local 7 end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 5 1 key1 I
0 5 2 value1 D
0 5 4 key2 I
0 5 5 value2 D
0 5 7 key3 I
0 5 8 value3 D
0 5 10 key4 I
0 5 11 value4 D
MethodParameters:
Name Flags
key1
value1
key2
value2
key3
value3
key4
value4
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withoutKey(int);
descriptor: (I)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.removeKey:(I)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 key I
MethodParameters:
Name Flags
key
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap withoutAllKeys(org.eclipse.collections.api.IntIterable);
descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
aload 0
invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
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:
(I)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.removeKey(I)V (5)
(I)V
1
invokeinterface org.eclipse.collections.api.IntIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 keys Lorg/eclipse/collections/api/IntIterable;
MethodParameters:
Name Flags
keys
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap asUnmodifiable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.UnmodifiableIntDoubleMap
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.UnmodifiableIntDoubleMap.<init>:(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap asSynchronized();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.SynchronizedIntDoubleMap
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.SynchronizedIntDoubleMap.<init>:(Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.map.primitive.ImmutableIntDoubleMap toImmutable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/ImmutableIntDoubleMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: getstatic org.eclipse.collections.impl.factory.primitive.IntDoubleMaps.immutable:Lorg/eclipse/collections/api/factory/map/primitive/ImmutableIntDoubleMapFactory;
aload 0
invokeinterface org.eclipse.collections.api.factory.map.primitive.ImmutableIntDoubleMapFactory.ofAll:(Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;)Lorg/eclipse/collections/api/map/primitive/ImmutableIntDoubleMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public double get(int);
descriptor: (I)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
dconst_0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.getIfAbsent:(ID)D
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 1 1 key I
MethodParameters:
Name Flags
key
public double getIfAbsent(int, double);
descriptor: (ID)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifne 1
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 2
1: StackMap locals:
StackMap stack:
aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.getForSentinel:(ID)D
dreturn
2: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
ifne 4
3: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.fastGetIfAbsent:(ID)D
dreturn
4: StackMap locals:
StackMap stack:
aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.slowGetIfAbsent:(ID)D
dreturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 5 1 key I
0 5 2 ifAbsent D
MethodParameters:
Name Flags
key
ifAbsent
private double getForSentinel(int, double);
descriptor: (ID)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=4, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 4
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifne 3
2: StackMap locals:
StackMap stack:
dload 2
dreturn
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
4: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 5
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifne 6
5: StackMap locals:
StackMap stack:
dload 2
dreturn
6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 7 1 key I
0 7 2 ifAbsent D
MethodParameters:
Name Flags
key
ifAbsent
private double slowGetIfAbsent(int, double);
descriptor: (ID)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 4
start local 4 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 3
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
3: StackMap locals: int
StackMap stack:
dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 4 1 key I
0 4 2 ifAbsent D
1 4 4 index I
MethodParameters:
Name Flags
key
ifAbsent
private double fastGetIfAbsent(int, double);
descriptor: (ID)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=7, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.mask:(I)I
istore 4
start local 4 1: iconst_0
istore 5
start local 5 2: goto 10
3: StackMap locals: int int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
istore 6
start local 6 4: iload 6
iload 1
if_icmpne 6
5: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
6: StackMap locals: int
StackMap stack:
iload 6
ifne 8
7: dload 2
dreturn
8: StackMap locals:
StackMap stack:
iload 4
iconst_1
iadd
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
iconst_1
isub
iand
istore 4
end local 6 9: iinc 5 1
StackMap locals:
StackMap stack:
10: iload 5
bipush 8
if_icmplt 3
end local 5 11: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.slowGetIfAbsentTwo:(ID)D
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 12 1 key I
0 12 2 ifAbsent D
1 12 4 index I
2 11 5 i I
4 9 6 keyAtIndex I
MethodParameters:
Name Flags
key
ifAbsent
private double slowGetIfAbsentTwo(int, double);
descriptor: (ID)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
iconst_m1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probeTwo:(II)I
istore 4
start local 4 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 4
iaload
iload 1
if_icmpne 3
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 4
daload
dreturn
3: StackMap locals: int
StackMap stack:
dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 4 1 key I
0 4 2 ifAbsent D
1 4 4 index I
MethodParameters:
Name Flags
key
ifAbsent
public double getOrThrow(int);
descriptor: (I)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=2
start local 0 start local 1 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 4
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifne 3
2: StackMap locals:
StackMap stack:
new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Key "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " not present."
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
dreturn
4: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 8
5: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifne 7
6: StackMap locals:
StackMap stack:
new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Key "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " not present."
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
7: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
dreturn
8: StackMap locals:
StackMap stack:
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
istore 2
start local 2 9: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 11
10: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
dreturn
11: StackMap locals: int
StackMap stack:
new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Key "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " not present."
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 12 1 key I
9 12 2 index I
MethodParameters:
Name Flags
key
public boolean containsKey(int);
descriptor: (I)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifeq 3
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 2
iconst_1
ireturn
StackMap locals:
StackMap stack:
2: iconst_0
ireturn
3: StackMap locals:
StackMap stack:
iload 1
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifeq 6
4: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 5
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 5
iconst_1
ireturn
StackMap locals:
StackMap stack:
5: iconst_0
ireturn
6: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probe:(I)I
iaload
iload 1
if_icmpne 7
iconst_1
ireturn
StackMap locals:
StackMap stack:
7: iconst_0
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 8 1 key I
MethodParameters:
Name Flags
key
public void forEachKey(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 5
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 3
2: aload 1
iconst_0
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 5
4: aload 1
iconst_1
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
5: StackMap locals:
StackMap stack:
iconst_0
istore 2
start local 2 6: goto 10
7: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 9
8: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
9: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
10: iload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 7
end local 2 11: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 12 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
6 11 2 i I
MethodParameters:
Name Flags
procedure
public void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.IntDoubleProcedure);
descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 5
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 3
2: aload 1
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntDoubleProcedure.value:(ID)V
3: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 5
4: aload 1
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntDoubleProcedure.value:(ID)V
5: StackMap locals:
StackMap stack:
iconst_0
istore 2
start local 2 6: goto 10
7: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 9
8: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntDoubleProcedure.value:(ID)V
9: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
10: iload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 7
end local 2 11: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 12 1 procedure Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;
6 11 2 i I
MethodParameters:
Name Flags
procedure
public org.eclipse.collections.api.LazyIntIterable keysView();
descriptor: ()Lorg/eclipse/collections/api/LazyIntIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeysView
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeysView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.tuple.primitive.IntDoublePair> keyValuesView();
descriptor: ()Lorg/eclipse/collections/api/RichIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeyValuesView
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeyValuesView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
Signature: ()Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/tuple/primitive/IntDoublePair;>;
public org.eclipse.collections.api.map.primitive.MutableDoubleIntMap flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: getstatic org.eclipse.collections.impl.factory.primitive.DoubleIntMaps.mutable:Lorg/eclipse/collections/api/factory/map/primitive/MutableDoubleIntMapFactory;
invokeinterface org.eclipse.collections.api.factory.map.primitive.MutableDoubleIntMapFactory.empty:()Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
astore 1
start local 1 1: aload 0
aload 1
invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;
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:
(ID)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;ID)V (6)
(ID)V
1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
1 3 1 result Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap select(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:()V
astore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 4
aload 1
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifeq 4
3: aload 2
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
4: StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 6
aload 1
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifeq 6
5: aload 2
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
6: StackMap locals:
StackMap stack:
iconst_0
istore 3
start local 3 7: goto 11
8: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 10
aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifeq 10
9: aload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
10: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
11: iload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 8
end local 3 12: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;
1 13 2 result Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
7 12 3 i I
MethodParameters:
Name Flags
predicate
public org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap reject(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
dup
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.<init>:()V
astore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 6
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 4
aload 1
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifne 4
3: aload 2
iconst_0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
4: StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 6
aload 1
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifne 6
5: aload 2
iconst_1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
6: StackMap locals:
StackMap stack:
iconst_0
istore 3
start local 3 7: goto 11
8: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 10
aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate.accept:(ID)Z
ifne 10
9: aload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 3
daload
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
10: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
11: iload 3
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 8
end local 3 12: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 predicate Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;
1 13 2 result Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
7 12 3 i I
MethodParameters:
Name Flags
predicate
public void writeExternal(java.io.ObjectOutput);
descriptor: (Ljava/io/ObjectOutput;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 1
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.size:()I
invokeinterface java.io.ObjectOutput.writeInt:(I)V
1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
ifnull 8
2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsZeroKey:Z
ifeq 5
3: aload 1
iconst_0
invokeinterface java.io.ObjectOutput.writeInt:(I)V
4: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.zeroValue:D
invokeinterface java.io.ObjectOutput.writeDouble:(D)V
5: StackMap locals:
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.containsOneKey:Z
ifeq 8
6: aload 1
iconst_1
invokeinterface java.io.ObjectOutput.writeInt:(I)V
7: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableDoubleValuesMap$SentinelValues;
getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues.oneValue:D
invokeinterface java.io.ObjectOutput.writeDouble:(D)V
8: StackMap locals:
StackMap stack:
iconst_0
istore 2
start local 2 9: goto 14
10: StackMap locals: int
StackMap stack:
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 13
11: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
invokeinterface java.io.ObjectOutput.writeInt:(I)V
12: aload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
iload 2
daload
invokeinterface java.io.ObjectOutput.writeDouble:(D)V
13: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
14: iload 2
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
if_icmplt 10
end local 2 15: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
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 start local 1 0: aload 1
invokeinterface java.io.ObjectInput.readInt:()I
istore 2
start local 2 1: iconst_0
istore 3
start local 3 2: goto 5
3: StackMap locals: int int
StackMap stack:
aload 0
aload 1
invokeinterface java.io.ObjectInput.readInt:()I
aload 1
invokeinterface java.io.ObjectInput.readDouble:()D
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
4: iinc 3 1
StackMap locals:
StackMap stack:
5: iload 3
iload 2
if_icmplt 3
end local 3 6: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 7 1 in Ljava/io/ObjectInput;
1 7 2 size I
2 6 3 i I
Exceptions:
throws java.io.IOException, java.lang.ClassNotFoundException
MethodParameters:
Name Flags
in
public void compact();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
aload 0
aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.size:()I
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.smallestPowerOfTwoGreaterThan:(I)I
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.rehash:(I)V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
private void rehashAndGrow();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=3, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.maxOccupiedWithData:()I
istore 1
start local 1 1: iload 1
aload 0
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
iconst_1
iadd
iconst_1
ishl
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.smallestPowerOfTwoGreaterThan:(I)I
invokestatic java.lang.Math.max:(II)I
istore 2
start local 2 2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
ifle 4
iload 1
iconst_1
ishr
iload 1
iconst_2
ishr
iadd
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
if_icmpge 4
3: iload 2
iconst_1
ishl
istore 2
4: StackMap locals: int int
StackMap stack:
aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.rehash:(I)V
5: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
1 6 1 max I
2 6 2 newCapacity I
private void rehash(int);
descriptor: (I)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=6, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
istore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
astore 3
start local 3 2: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
astore 4
start local 4 3: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.allocateTable:(I)V
4: aload 0
iconst_0
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithData:I
5: aload 0
iconst_0
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.occupiedWithSentinels:I
6: iconst_0
istore 5
start local 5 7: goto 11
8: StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap int int int[] double[] int
StackMap stack:
aload 3
iload 5
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isNonSentinel:(I)Z
ifeq 10
9: aload 0
aload 3
iload 5
iaload
aload 4
iload 5
daload
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.put:(ID)V
10: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
11: iload 5
iload 2
if_icmplt 8
end local 5 12: return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 newCapacity I
1 13 2 oldLength I
2 13 3 old [I
3 13 4 oldValues [D
7 12 5 i I
MethodParameters:
Name Flags
newCapacity
int probe(int);
descriptor: (I)I
flags: (0x0000)
Code:
stack=3, locals=7, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.mask:(I)I
istore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 2
iaload
istore 3
start local 3 2: iload 3
iload 1
if_icmpeq 3
iload 3
ifne 4
3: StackMap locals: int int
StackMap stack:
iload 2
ireturn
4: StackMap locals:
StackMap stack:
iload 3
iconst_1
if_icmpne 5
iload 2
goto 6
StackMap locals:
StackMap stack:
5: iconst_m1
StackMap locals:
StackMap stack: int
6: istore 4
start local 4 7: iconst_1
istore 5
start local 5 8: goto 20
9: StackMap locals: int int
StackMap stack:
iload 2
iload 5
iadd
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
iconst_1
isub
iand
istore 6
start local 6 10: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 6
iaload
istore 3
11: iload 3
iload 1
if_icmpne 13
12: iload 6
ireturn
13: StackMap locals: int
StackMap stack:
iload 3
ifne 17
14: iload 4
iconst_m1
if_icmpne 15
iload 6
goto 16
StackMap locals:
StackMap stack:
15: iload 4
StackMap locals:
StackMap stack: int
16: ireturn
17: StackMap locals:
StackMap stack:
iload 3
iconst_1
if_icmpne 19
iload 4
iconst_m1
if_icmpne 19
18: iload 6
istore 4
end local 6 19: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
20: iload 5
bipush 8
if_icmplt 9
end local 5 21: aload 0
iload 1
iload 4
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probeTwo:(II)I
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 22 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 22 1 element I
1 22 2 index I
2 22 3 keyAtIndex I
7 22 4 removedIndex I
8 21 5 i I
10 19 6 nextIndex I
MethodParameters:
Name Flags
element
int probeTwo(int, int);
descriptor: (II)I
flags: (0x0000)
Code:
stack=3, locals=7, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.spreadTwoAndMask:(I)I
istore 3
start local 3 1: iconst_0
istore 4
start local 4 2: goto 14
3: StackMap locals: int int
StackMap stack:
iload 3
iload 4
iadd
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
iconst_1
isub
iand
istore 5
start local 5 4: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 5
iaload
istore 6
start local 6 5: iload 6
iload 1
if_icmpne 7
6: iload 5
ireturn
7: StackMap locals: int int
StackMap stack:
iload 6
ifne 11
8: iload 2
iconst_m1
if_icmpne 9
iload 5
goto 10
StackMap locals:
StackMap stack:
9: iload 2
StackMap locals:
StackMap stack: int
10: ireturn
11: StackMap locals:
StackMap stack:
iload 6
iconst_1
if_icmpne 13
iload 2
iconst_m1
if_icmpne 13
12: iload 5
istore 2
end local 6 end local 5 13: StackMap locals:
StackMap stack:
iinc 4 1
StackMap locals:
StackMap stack:
14: iload 4
bipush 8
if_icmplt 3
end local 4 15: aload 0
iload 1
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.probeThree:(II)I
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 16 1 element I
0 16 2 removedIndex I
1 16 3 index I
2 15 4 i I
4 13 5 nextIndex I
5 13 6 keyAtIndex I
MethodParameters:
Name Flags
element
removedIndex
int probeThree(int, int);
descriptor: (II)I
flags: (0x0000)
Code:
stack=3, locals=6, args_size=3
start local 0 start local 1 start local 2 0: iload 1
invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadOne:(I)I
istore 3
start local 3 1: iload 1
invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadTwo:(I)I
invokestatic java.lang.Integer.reverse:(I)I
iconst_1
ior
istore 4
start local 4 2: StackMap locals: int int
StackMap stack:
aload 0
iload 3
iload 4
iadd
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.mask:(I)I
istore 3
3: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 3
iaload
istore 5
start local 5 4: iload 5
iload 1
if_icmpne 6
5: iload 3
ireturn
6: StackMap locals: int
StackMap stack:
iload 5
ifne 10
7: iload 2
iconst_m1
if_icmpne 8
iload 3
goto 9
StackMap locals:
StackMap stack:
8: iload 2
StackMap locals:
StackMap stack: int
9: ireturn
10: StackMap locals:
StackMap stack:
iload 5
iconst_1
if_icmpne 2
iload 2
iconst_m1
if_icmpne 2
11: iload 3
istore 2
end local 5 12: goto 2
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 13 1 element I
0 13 2 removedIndex I
1 13 3 nextIndex I
2 13 4 spreadTwo I
4 12 5 keyAtIndex I
MethodParameters:
Name Flags
element
removedIndex
int spreadAndMask(int);
descriptor: (I)I
flags: (0x0000)
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: iload 1
invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadOne:(I)I
istore 2
start local 2 1: aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.mask:(I)I
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 element I
1 2 2 code I
MethodParameters:
Name Flags
element
int spreadTwoAndMask(int);
descriptor: (I)I
flags: (0x0000)
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: iload 1
invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadTwo:(I)I
istore 2
start local 2 1: aload 0
iload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.mask:(I)I
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 element I
1 2 2 code I
MethodParameters:
Name Flags
element
private int mask(int);
descriptor: (I)I
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: iload 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
iconst_1
isub
iand
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
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 start local 1 0: aload 0
iload 1
newarray 10
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
1: aload 0
iload 1
newarray 7
putfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.values:[D
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 3 1 sizeToAllocate I
MethodParameters:
Name Flags
sizeToAllocate
private static boolean isEmptyKey(int);
descriptor: (I)Z
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iload 0
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 key I
MethodParameters:
Name Flags
key
private static boolean isRemovedKey(int);
descriptor: (I)Z
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: iload 0
iconst_1
if_icmpne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 key I
MethodParameters:
Name Flags
key
private static boolean isNonSentinel(int);
descriptor: (I)Z
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iload 0
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifne 1
iload 0
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 key I
MethodParameters:
Name Flags
key
protected boolean isNonSentinelAtIndex(int);
descriptor: (I)Z
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 1
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isEmptyKey:(I)Z
ifne 1
aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
iload 1
iaload
invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.isRemovedKey:(I)Z
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
0 2 1 index I
MethodParameters:
Name Flags
index
private int maxOccupiedWithData();
descriptor: ()I
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.keys:[I
arraylength
iconst_1
ishr
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.set.primitive.MutableIntSet keySet();
descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableIntSet;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySet
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySet.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.collection.primitive.MutableDoubleCollection values();
descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableDoubleCollection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$ValuesCollection
dup
aload 0
invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$ValuesCollection.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
public org.eclipse.collections.api.iterator.DoubleIterator doubleIterator();
descriptor: ()Lorg/eclipse/collections/api/iterator/DoubleIterator;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.doubleIterator:()Lorg/eclipse/collections/api/iterator/MutableDoubleIterator;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap withKeyValue(int, double);
descriptor: (ID)Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=4, locals=4, args_size=3
0: aload 0
iload 1
dload 2
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withKeyValue:(ID)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.IntDoubleMap select(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap select(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap withoutKey(int);
descriptor: (I)Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withoutKey:(I)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.IntDoubleMap reject(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap reject(org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntDoublePredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.DoubleIntMap flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.MutableIntDoubleMap withoutAllKeys(org.eclipse.collections.api.IntIterable);
descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap.withoutAllKeys:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
private static void lambda$2(org.eclipse.collections.api.map.primitive.MutableDoubleIntMap, int, double);
descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;ID)V
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=6, locals=4, args_size=3
start local 1 start local 2 0: aload 0
dload 2
invokeinterface org.eclipse.collections.api.map.primitive.MutableDoubleIntMap.containsKey:(D)Z
ifeq 2
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Duplicate value: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
dload 2
invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
ldc " found at key: "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
aload 0
dload 2
invokeinterface org.eclipse.collections.api.map.primitive.MutableDoubleIntMap.get:(D)I
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
ldc " and key: "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
iload 1
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: StackMap locals:
StackMap stack:
aload 0
dload 2
iload 1
invokeinterface org.eclipse.collections.api.map.primitive.MutableDoubleIntMap.put:(DI)V
3: return
end local 2 end local 1 LocalVariableTable:
Start End Slot Name Signature
0 4 1 key I
0 4 2 value D
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: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
astore 1
iconst_m1
istore 2
aload 1
invokevirtual java.lang.String.hashCode:()I
lookupswitch { // 3
-1647345003: 3
111375: 1
1282355003: 2
default: 4
}
StackMap locals: java.lang.String int
StackMap stack:
1: aload 1
ldc "put"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 4
iconst_0
istore 2
goto 4
StackMap locals:
StackMap stack:
2: aload 1
ldc "removeKey"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 4
iconst_1
istore 2
goto 4
StackMap locals:
StackMap stack:
3: aload 1
ldc "lambda$2"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 4
iconst_2
istore 2
StackMap locals:
StackMap stack:
4: iload 2
lookupswitch { // 3
0: 5
1: 6
2: 7
default: 8
}
StackMap locals:
StackMap stack:
5: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
bipush 5
if_icmpne 8
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
ldc "org/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure"
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 "(ID)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/IntDoubleHashMap"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 8
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
ldc "(ID)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.IntDoubleHashMap
invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;
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:
(ID)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.put(ID)V (5)
(ID)V
1
areturn
StackMap locals:
StackMap stack:
6: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
bipush 5
if_icmpne 8
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
ldc "org/eclipse/collections/api/block/procedure/primitive/IntProcedure"
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 "(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/IntDoubleHashMap"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 8
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
ldc "(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 org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
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:
(I)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.removeKey(I)V (5)
(I)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/IntDoubleProcedure"
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 "(ID)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/IntDoubleHashMap"
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/MutableDoubleIntMap;ID)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.MutableDoubleIntMap
invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntDoubleProcedure;
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:
(ID)V
org/eclipse/collections/impl/map/mutable/primitive/IntDoubleHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;ID)V (6)
(ID)V
1
areturn
StackMap locals:
StackMap stack:
8: new java.lang.IllegalArgumentException
dup
ldc "Invalid lambda deserialization"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
LocalVariableTable:
Start End Slot Name Signature
}
SourceFile: "IntDoubleHashMap.java"
NestMembers:
org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$InternalDoubleIterator org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySet org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySetIterator org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeyValuesView org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeyValuesView$InternalKeyValuesIterator org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeysView org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$ValuesCollection
InnerClasses:
public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
protected SentinelValues = org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap$SentinelValues of org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableDoubleValuesMap
private InternalDoubleIterator = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$InternalDoubleIterator of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
private KeySet = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySet of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
private KeySetIterator = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeySetIterator of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
private KeyValuesView = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeyValuesView of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
private KeysView = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$KeysView of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap
private ValuesCollection = org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap$ValuesCollection of org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap