public class org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap extends org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap implements org.eclipse.collections.api.map.primitive.MutableIntIntMap, 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.IntIntHashMap
  super_class: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap
{
  private static final int EMPTY_VALUE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

  private static final 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[] keysValues;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  protected int getValueAtIndex(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int index
         0: .line 172
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 1 /* index */
            iconst_2
            imul
            iconst_1
            iadd
            iaload
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // java.lang.Object obj
         0: .line 178
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 180
            iconst_1
            ireturn
         2: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.map.primitive.IntIntMap
            ifne 4
         3: .line 185
            iconst_0
            ireturn
         4: .line 188
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.map.primitive.IntIntMap
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.map.primitive.IntIntMap other
         5: .line 190
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.size:()I
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.size:()I
            if_icmpeq 7
         6: .line 192
            iconst_0
            ireturn
         7: .line 195
      StackMap locals: org.eclipse.collections.api.map.primitive.IntIntMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 10
         8: .line 197
            aload 2 /* other */
            iconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.containsKey:(I)Z
            ifne 9
            aload 2 /* other */
            iconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.containsKey:(I)Z
            ifeq 14
         9: .line 199
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        10: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 12
            aload 2 /* other */
            iconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.containsKey:(I)Z
            ifeq 11
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            aload 2 /* other */
            iconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.getOrThrow:(I)I
            if_icmpeq 12
        11: .line 206
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        12: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 14
            aload 2 /* other */
            iconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.containsKey:(I)Z
            ifeq 13
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            aload 2 /* other */
            iconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.getOrThrow:(I)I
            if_icmpeq 14
        13: .line 211
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        14: .line 214
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 20
        16: .line 216
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            istore 4 /* key */
        start local 4 // int key
        17: .line 217
            iload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 19
            aload 2 /* other */
            iload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.containsKey:(I)Z
            ifeq 18
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            aload 2 /* other */
            iload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.IntIntMap.getOrThrow:(I)I
            if_icmpeq 19
        18: .line 219
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // int key
        19: .line 214
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 16
        end local 3 // int i
        21: .line 222
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.map.primitive.IntIntMap other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   22     1    obj  Ljava/lang/Object;
            5   22     2  other  Lorg/eclipse/collections/api/map/primitive/IntIntMap;
           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=5, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 228
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 230
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 232
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 234
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            iadd
            istore 1 /* result */
         4: .line 236
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 238
            iload 1 /* result */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ixor
            iadd
            istore 1 /* result */
         6: .line 241
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         7: goto 11
         8: .line 243
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 10
         9: .line 245
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            ixor
            iadd
            istore 1 /* result */
        10: .line 241
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 8
        end local 2 // int i
        12: .line 249
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 255
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* appendable */
        start local 1 // java.lang.StringBuilder appendable
         1: .line 257
            aload 1 /* appendable */
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 259
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         3: .line 261
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 12
         4: .line 263
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         5: .line 265
            aload 1 /* appendable */
            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 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         6: .line 266
            iconst_0
            istore 2 /* first */
         7: .line 268
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 12
         8: .line 270
            iload 2 /* first */
            ifne 10
         9: .line 272
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 274
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            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 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        11: .line 275
            iconst_0
            istore 2 /* first */
        12: .line 278
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 21
        14: .line 280
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            istore 4 /* key */
        start local 4 // int key
        15: .line 281
            iload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 20
        16: .line 283
            iload 2 /* first */
            ifne 18
        17: .line 285
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        18: .line 287
      StackMap locals: int
      StackMap stack:
            aload 1 /* appendable */
            iload 4 /* key */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        19: .line 288
            iconst_0
            istore 2 /* first */
        end local 4 // int key
        20: .line 278
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 14
        end local 3 // int i
        22: .line 291
            aload 1 /* appendable */
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 293
            aload 1 /* appendable */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // boolean first
        end local 1 // java.lang.StringBuilder appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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.MutableIntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/MutableIntIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 299
            new org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$InternalIntIterator
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$InternalIntIterator.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;

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

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 332
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         1: .line 333
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
         2: .line 334
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
         3: .line 335
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeysOnWrite:Z
            ifeq 5
         4: .line 337
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeys:()V
         5: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iconst_0
            invokestatic java.util.Arrays.fill:([II)V
         6: .line 340
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;

  public void put(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int value
         0: .line 345
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 3
         1: .line 347
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.putForEmptySentinel:(I)V
         2: .line 348
            return
         3: .line 351
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 6
         4: .line 353
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.putForRemovedSentinel:(I)V
         5: .line 354
            return
         6: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
         7: .line 358
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            istore 4 /* keyAtIndex */
        start local 4 // int keyAtIndex
         8: .line 359
            iload 4 /* keyAtIndex */
            iload 1 /* key */
            if_icmpne 11
         9: .line 361
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iload 2 /* value */
            iastore
        10: .line 362
            goto 12
        11: .line 365
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            iload 2 /* value */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        12: .line 367
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int keyAtIndex
        end local 3 // int index
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   13     1         key  I
            0   13     2       value  I
            7   13     3       index  I
            8   13     4  keyAtIndex  I
    MethodParameters:
       Name  Flags
      key    
      value  

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

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

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

  public void updateValues(org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntIntToIntFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction function
         0: .line 396
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 398
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 400
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 1 /* function */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction.valueOf:(II)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         3: .line 402
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 404
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 1 /* function */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction.valueOf:(II)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
         5: .line 407
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 409
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 9
         8: .line 411
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iconst_1
            iadd
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction.valueOf:(II)I
            iastore
         9: .line 407
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 414
            return
        end local 1 // org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   12     1  function  Lorg/eclipse/collections/api/block/function/primitive/IntIntToIntFunction;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
         0: .line 419
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 5
         1: .line 421
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 423
      StackMap locals:
      StackMap stack:
            return
         3: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeEmptyKey:()V
         4: .line 426
            return
         5: .line 428
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 10
         6: .line 430
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 7
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 8
         7: .line 432
      StackMap locals:
      StackMap stack:
            return
         8: .line 434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeRemovedKey:()V
         9: .line 435
            return
        10: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 2 /* index */
        start local 2 // int index
        11: .line 438
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 13
        12: .line 440
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeKeyAtIndex:(I)V
        13: .line 442
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int index
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
         0: .line 447
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeKey:(I)V
         1: .line 448
            return
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    2     1   key  I
    MethodParameters:
      Name  Flags
      key   

  public int removeKeyIfAbsent(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int value
         0: .line 453
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 6
         1: .line 455
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 457
      StackMap locals:
      StackMap stack:
            iload 2 /* value */
            ireturn
         3: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            istore 3 /* oldValue */
        start local 3 // int oldValue
         4: .line 460
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeEmptyKey:()V
         5: .line 461
            iload 3 /* oldValue */
            ireturn
        end local 3 // int oldValue
         6: .line 463
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 12
         7: .line 465
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 8
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 9
         8: .line 467
      StackMap locals:
      StackMap stack:
            iload 2 /* value */
            ireturn
         9: .line 469
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            istore 3 /* oldValue */
        start local 3 // int oldValue
        10: .line 470
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeRemovedKey:()V
        11: .line 471
            iload 3 /* oldValue */
            ireturn
        end local 3 // int oldValue
        12: .line 473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
        13: .line 474
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 17
        14: .line 476
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            istore 4 /* oldValue */
        start local 4 // int oldValue
        15: .line 477
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeKeyAtIndex:(I)V
        16: .line 478
            iload 4 /* oldValue */
            ireturn
        end local 4 // int oldValue
        17: .line 480
      StackMap locals: int
      StackMap stack:
            iload 2 /* value */
            ireturn
        end local 3 // int index
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   18     1       key  I
            0   18     2     value  I
            4    6     3  oldValue  I
           10   12     3  oldValue  I
           13   18     3     index  I
           15   17     4  oldValue  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int getIfAbsentPut(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int value
         0: .line 486
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 9
         1: .line 488
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 490
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 491
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         4: .line 492
            iload 2 /* value */
            ireturn
         5: .line 494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         6: .line 496
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         7: .line 498
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         8: .line 499
            iload 2 /* value */
            ireturn
         9: .line 501
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 18
        10: .line 503
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 14
        11: .line 505
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        12: .line 506
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        13: .line 507
            iload 2 /* value */
            ireturn
        14: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 16
        15: .line 511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        16: .line 513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        17: .line 514
            iload 2 /* value */
            ireturn
        18: .line 516
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
        19: .line 517
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 21
        20: .line 519
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        21: .line 521
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            iload 2 /* value */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        22: .line 522
            iload 2 /* value */
            ireturn
        end local 3 // int index
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   23     1    key  I
            0   23     2  value  I
           19   23     3  index  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int getIfAbsentPut(int, org.eclipse.collections.api.block.function.primitive.IntFunction0);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction0 function
         0: .line 528
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 11
         1: .line 530
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 532
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 3 /* value */
        start local 3 // int value
         3: .line 533
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 534
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         5: .line 535
            iload 3 /* value */
            ireturn
        end local 3 // int value
         6: .line 537
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 539
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 541
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 3 /* value */
        start local 3 // int value
         9: .line 542
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
        10: .line 543
            iload 3 /* value */
            ireturn
        end local 3 // int value
        11: .line 545
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 22
        12: .line 547
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 549
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 3 /* value */
        start local 3 // int value
        14: .line 550
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 551
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        16: .line 552
            iload 3 /* value */
            ireturn
        end local 3 // int value
        17: .line 554
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 556
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 558
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 3 /* value */
        start local 3 // int value
        20: .line 559
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        21: .line 560
            iload 3 /* value */
            ireturn
        end local 3 // int value
        22: .line 562
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
        23: .line 563
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 25
        24: .line 565
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        25: .line 567
      StackMap locals: int
      StackMap stack:
            aload 2 /* function */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction0.value:()I
            istore 4 /* value */
        start local 4 // int value
        26: .line 568
            aload 0 /* this */
            iload 1 /* key */
            iload 4 /* value */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        27: .line 569
            iload 4 /* value */
            ireturn
        end local 4 // int value
        end local 3 // int index
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction0 function
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   28     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   28     1       key  I
            0   28     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction0;
            3    6     3     value  I
            9   11     3     value  I
           14   17     3     value  I
           20   22     3     value  I
           23   28     3     index  I
           26   28     4     value  I
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> int getIfAbsentPutWith(int, org.eclipse.collections.api.block.function.primitive.IntFunction<? super P>, );
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntFunction;Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        start local 3 // java.lang.Object parameter
         0: .line 575
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 11
         1: .line 577
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 579
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 4 /* value */
        start local 4 // int value
         3: .line 580
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 581
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         5: .line 582
            iload 4 /* value */
            ireturn
        end local 4 // int value
         6: .line 584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 586
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 588
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 4 /* value */
        start local 4 // int value
         9: .line 589
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
        10: .line 590
            iload 4 /* value */
            ireturn
        end local 4 // int value
        11: .line 592
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 22
        12: .line 594
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 596
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 4 /* value */
        start local 4 // int value
        14: .line 597
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 598
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        16: .line 599
            iload 4 /* value */
            ireturn
        end local 4 // int value
        17: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 603
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 605
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 4 /* value */
        start local 4 // int value
        20: .line 606
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        21: .line 607
            iload 4 /* value */
            ireturn
        end local 4 // int value
        22: .line 609
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 4 /* index */
        start local 4 // int index
        23: .line 610
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 25
        24: .line 612
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        25: .line 614
      StackMap locals: int
      StackMap stack:
            aload 2 /* function */
            aload 3 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntFunction.intValueOf:(Ljava/lang/Object;)I
            istore 5 /* value */
        start local 5 // int value
        26: .line 615
            aload 0 /* this */
            iload 1 /* key */
            iload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        27: .line 616
            iload 5 /* value */
            ireturn
        end local 5 // int value
        end local 4 // int index
        end local 3 // java.lang.Object parameter
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntFunction function
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   28     1        key  I
            0   28     2   function  Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TP;>;
            0   28     3  parameter  TP;
            3    6     4      value  I
            9   11     4      value  I
           14   17     4      value  I
           20   22     4      value  I
           23   28     4      index  I
           26   28     5      value  I
    Signature: <P:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/primitive/IntFunction<-TP;>;TP;)I
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public int getIfAbsentPutWithKey(int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
         0: .line 622
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 11
         1: .line 624
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 6
         2: .line 626
            aload 2 /* function */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 3 /* value */
        start local 3 // int value
         3: .line 627
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         4: .line 628
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         5: .line 629
            iload 3 /* value */
            ireturn
        end local 3 // int value
         6: .line 631
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 633
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         8: .line 635
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 3 /* value */
        start local 3 // int value
         9: .line 636
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
        10: .line 637
            iload 3 /* value */
            ireturn
        end local 3 // int value
        11: .line 639
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 22
        12: .line 641
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 17
        13: .line 643
            aload 2 /* function */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 3 /* value */
        start local 3 // int value
        14: .line 644
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        15: .line 645
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        16: .line 646
            iload 3 /* value */
            ireturn
        end local 3 // int value
        17: .line 648
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 650
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        19: .line 652
      StackMap locals:
      StackMap stack:
            aload 2 /* function */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 3 /* value */
        start local 3 // int value
        20: .line 653
            aload 0 /* this */
            iload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        21: .line 654
            iload 3 /* value */
            ireturn
        end local 3 // int value
        22: .line 656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
        23: .line 657
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 25
        24: .line 659
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        25: .line 661
      StackMap locals: int
      StackMap stack:
            aload 2 /* function */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 4 /* value */
        start local 4 // int value
        26: .line 662
            aload 0 /* this */
            iload 1 /* key */
            iload 4 /* value */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        27: .line 663
            iload 4 /* value */
            ireturn
        end local 4 // int value
        end local 3 // int index
        end local 2 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   28     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   28     1       key  I
            0   28     2  function  Lorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;
            3    6     3     value  I
            9   11     3     value  I
           14   17     3     value  I
           20   22     3     value  I
           23   28     3     index  I
           26   28     4     value  I
    MethodParameters:
          Name  Flags
      key       
      function  

  public int addToValue(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int toBeAdded
         0: .line 669
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 10
         1: .line 671
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 673
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 674
            aload 0 /* this */
            iload 2 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         4: .line 675
            goto 9
         5: .line 676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 678
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            iload 2 /* toBeAdded */
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         7: .line 679
            goto 9
         8: .line 682
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         9: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
        10: .line 686
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 20
        11: .line 688
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 15
        12: .line 690
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        13: .line 691
            aload 0 /* this */
            iload 2 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        14: .line 692
            goto 19
        15: .line 693
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 18
        16: .line 695
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            iload 2 /* toBeAdded */
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
        17: .line 696
            goto 19
        18: .line 699
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* toBeAdded */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        19: .line 701
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        20: .line 703
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
        21: .line 704
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 24
        22: .line 706
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            dup2
            iaload
            iload 2 /* toBeAdded */
            iadd
            iastore
        23: .line 707
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        24: .line 709
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            iload 2 /* toBeAdded */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        25: .line 710
            iload 2 /* toBeAdded */
            ireturn
        end local 3 // int index
        end local 2 // int toBeAdded
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   26     1        key  I
            0   26     2  toBeAdded  I
           21   26     3      index  I
    MethodParameters:
           Name  Flags
      key        
      toBeAdded  

  private void addKeyValueAtIndex(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int value
        start local 3 // int index
         0: .line 715
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iconst_1
            if_icmpne 2
         1: .line 717
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
         2: .line 719
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeysOnWrite:Z
            ifeq 4
         3: .line 721
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeys:()V
         4: .line 723
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iload 1 /* key */
            iastore
         5: .line 724
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iload 2 /* value */
            iastore
         6: .line 725
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
         7: .line 726
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
            iadd
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.maxOccupiedWithData:()I
            if_icmple 9
         8: .line 728
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.rehashAndGrow:()V
         9: .line 730
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int index
        end local 2 // int value
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   10     1    key  I
            0   10     2  value  I
            0   10     3  index  I
    MethodParameters:
       Name  Flags
      key    
      value  
      index  

  private void removeKeyAtIndex(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int index
         0: .line 734
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeysOnWrite:Z
            ifeq 2
         1: .line 736
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeys:()V
         2: .line 738
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 1 /* index */
            iconst_1
            iastore
         3: .line 739
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 1 /* index */
            iconst_1
            iadd
            iconst_0
            iastore
         4: .line 740
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
         5: .line 741
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
         6: .line 742
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    7     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private void copyKeys();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 746
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            newarray 10
            astore 1 /* copy */
        start local 1 // int[] copy
         1: .line 747
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iconst_0
            aload 1 /* copy */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 748
            aload 0 /* this */
            aload 1 /* copy */
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
         3: .line 749
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.copyKeysOnWrite:Z
         4: .line 750
            return
        end local 1 // int[] copy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            1    5     1  copy  [I

  public int updateValue(int, int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (IILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int initialValueIfAbsent
        start local 3 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
         0: .line 755
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 10
         1: .line 757
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 5
         2: .line 759
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
         3: .line 760
            aload 0 /* this */
            aload 3 /* function */
            iload 2 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         4: .line 761
            goto 9
         5: .line 762
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 764
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 3 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
         7: .line 765
            goto 9
         8: .line 768
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* function */
            iload 2 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addEmptyKeyValue:(I)V
         9: .line 770
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
        10: .line 772
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 20
        11: .line 774
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnonnull 15
        12: .line 776
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
        13: .line 777
            aload 0 /* this */
            aload 3 /* function */
            iload 2 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        14: .line 778
            goto 19
        15: .line 779
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 18
        16: .line 781
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            aload 3 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            putfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
        17: .line 782
            goto 19
        18: .line 785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* function */
            iload 2 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addRemovedKeyValue:(I)V
        19: .line 787
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
        20: .line 789
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 4 /* index */
        start local 4 // int index
        21: .line 790
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 24
        22: .line 792
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iconst_1
            iadd
            aload 3 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iconst_1
            iadd
            iaload
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            iastore
        23: .line 793
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 4 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        24: .line 795
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            iload 2 /* initialValueIfAbsent */
            invokeinterface org.eclipse.collections.api.block.function.primitive.IntToIntFunction.valueOf:(I)I
            istore 5 /* value */
        start local 5 // int value
        25: .line 796
            aload 0 /* this */
            iload 1 /* key */
            iload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.addKeyValueAtIndex:(III)V
        26: .line 797
            iload 5 /* value */
            ireturn
        end local 5 // int value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.primitive.IntToIntFunction function
        end local 2 // int initialValueIfAbsent
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   27     0                  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   27     1                   key  I
            0   27     2  initialValueIfAbsent  I
            0   27     3              function  Lorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;
           21   27     4                 index  I
           25   27     5                 value  I
    MethodParameters:
                      Name  Flags
      key                   
      initialValueIfAbsent  
      function              

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

  public org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap withKeysValues(int, int, int, int);
    descriptor: (IIII)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key1
        start local 2 // int value1
        start local 3 // int key2
        start local 4 // int value2
         0: .line 809
            aload 0 /* this */
            iload 1 /* key1 */
            iload 2 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         1: .line 810
            aload 0 /* this */
            iload 3 /* key2 */
            iload 4 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         2: .line 811
            aload 0 /* this */
            areturn
        end local 4 // int value2
        end local 3 // int key2
        end local 2 // int value1
        end local 1 // int key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    3     1    key1  I
            0    3     2  value1  I
            0    3     3    key2  I
            0    3     4  value2  I
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

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

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

  public org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap withoutKey(int);
    descriptor: (I)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
         0: .line 834
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.removeKey:(I)V
         1: .line 835
            aload 0 /* this */
            areturn
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    2     1   key  I
    MethodParameters:
      Name  Flags
      key   

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

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

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

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

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

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

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

  private int slowGetIfAbsent(int, int);
    descriptor: (II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int ifAbsent
         0: .line 902
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 903
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 3
         2: .line 905
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
         3: .line 907
      StackMap locals: int
      StackMap stack:
            iload 2 /* ifAbsent */
            ireturn
        end local 3 // int index
        end local 2 // int ifAbsent
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    4     1       key  I
            0    4     2  ifAbsent  I
            1    4     3     index  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int fastGetIfAbsent(int, int);
    descriptor: (II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int ifAbsent
         0: .line 912
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.mask:(I)I
            iconst_1
            ishl
            istore 3 /* index */
        start local 3 // int index
         1: .line 914
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 10
         3: .line 916
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            istore 5 /* keyAtIndex */
        start local 5 // int keyAtIndex
         4: .line 917
            iload 5 /* keyAtIndex */
            iload 1 /* key */
            if_icmpne 6
         5: .line 919
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
         6: .line 921
      StackMap locals: int
      StackMap stack:
            iload 5 /* keyAtIndex */
            ifne 8
         7: .line 923
            iload 2 /* ifAbsent */
            ireturn
         8: .line 925
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            iconst_2
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            iconst_1
            isub
            iand
            istore 3 /* index */
        end local 5 // int keyAtIndex
         9: .line 914
            iinc 4 /* i */ 2
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            bipush 8
            if_icmplt 3
        end local 4 // int i
        11: .line 927
            aload 0 /* this */
            iload 1 /* key */
            iload 2 /* ifAbsent */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.slowGetIfAbsentTwo:(II)I
            ireturn
        end local 3 // int index
        end local 2 // int ifAbsent
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   12     1         key  I
            0   12     2    ifAbsent  I
            1   12     3       index  I
            2   11     4           i  I
            4    9     5  keyAtIndex  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  private int slowGetIfAbsentTwo(int, int);
    descriptor: (II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
        start local 2 // int ifAbsent
         0: .line 932
            aload 0 /* this */
            iload 1 /* key */
            iconst_m1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probeTwo:(II)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 933
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 3
         2: .line 935
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* index */
            iconst_1
            iadd
            iaload
            ireturn
         3: .line 937
      StackMap locals: int
      StackMap stack:
            iload 2 /* ifAbsent */
            ireturn
        end local 3 // int index
        end local 2 // int ifAbsent
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    4     1       key  I
            0    4     2  ifAbsent  I
            1    4     3     index  I
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  public int getOrThrow(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
         0: .line 943
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 4
         1: .line 945
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 947
      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 /* key */
            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: .line 949
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            ireturn
         4: .line 951
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 8
         5: .line 953
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifne 7
         6: .line 955
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* key */
            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: .line 957
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            ireturn
         8: .line 959
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            istore 2 /* index */
        start local 2 // int index
         9: .line 960
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* index */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 11
        10: .line 962
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* index */
            iconst_1
            iadd
            iaload
            ireturn
        11: .line 964
      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 /* key */
            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 // int index
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int key
         0: .line 970
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifeq 3
         1: .line 972
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 974
      StackMap locals:
      StackMap stack:
            iload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifeq 6
         4: .line 976
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
         6: .line 978
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probe:(I)I
            iaload
            iload 1 /* key */
            if_icmpne 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 1 // int key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 984
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 986
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 988
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
         3: .line 990
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 992
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
         5: .line 995
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 997
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 9
         8: .line 999
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntProcedure.value:(I)V
         9: .line 995
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1002
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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.IntIntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
         0: .line 1007
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 5
         1: .line 1009
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 1011
            aload 1 /* procedure */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure.value:(II)V
         3: .line 1013
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 1015
            aload 1 /* procedure */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure.value:(II)V
         5: .line 1018
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 1020
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 9
         8: .line 1022
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure.value:(II)V
         9: .line 1018
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 1025
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
         0: .line 1030
            new org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeysView
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeysView.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;

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

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

  public org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap select(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate predicate
         0: .line 1057
            new org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap result
         1: .line 1059
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 1061
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifeq 4
         3: .line 1063
            aload 2 /* result */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         4: .line 1065
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifeq 6
         5: .line 1067
            aload 2 /* result */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         6: .line 1070
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 1072
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifeq 10
         9: .line 1074
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
        10: .line 1070
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 1078
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap reject(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate predicate
         0: .line 1084
            new org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap result
         1: .line 1086
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 6
         2: .line 1088
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifne 4
         3: .line 1090
            aload 2 /* result */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         4: .line 1092
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifne 6
         5: .line 1094
            aload 2 /* result */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         6: .line 1097
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 1099
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate.accept:(II)Z
            ifne 10
         9: .line 1101
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iaload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* i */
            iconst_1
            iadd
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
        10: .line 1097
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 1104
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;
            1   13     2     result  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // java.io.ObjectOutput out
         0: .line 1110
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 1111
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            ifnull 8
         2: .line 1113
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         3: .line 1115
            aload 1 /* out */
            iconst_0
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         4: .line 1116
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.zeroValue:I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         5: .line 1118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.containsOneKey:Z
            ifeq 8
         6: .line 1120
            aload 1 /* out */
            iconst_1
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         7: .line 1121
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableIntValuesMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues.oneValue:I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         8: .line 1124
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         9: goto 14
        10: .line 1126
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 13
        11: .line 1128
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iaload
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
        12: .line 1129
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* i */
            iconst_1
            iadd
            iaload
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
        13: .line 1124
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            if_icmplt 10
        end local 2 // int i
        15: .line 1132
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // java.io.ObjectInput in
         0: .line 1137
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 1138
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 1140
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         4: .line 1138
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 3
        end local 3 // int i
         6: .line 1142
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    7     1    in  Ljava/io/ObjectInput;
            1    7     2  size  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

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

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

  private void rehash(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int newCapacity
         0: .line 1165
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 1166
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            astore 3 /* old */
        start local 3 // int[] old
         2: .line 1167
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.allocateTable:(I)V
         3: .line 1168
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithData:I
         4: .line 1169
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.occupiedWithSentinels:I
         5: .line 1171
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 1173
      StackMap locals: int int[] int
      StackMap stack:
            aload 3 /* old */
            iload 4 /* i */
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isNonSentinel:(I)Z
            ifeq 9
         8: .line 1175
            aload 0 /* this */
            aload 3 /* old */
            iload 4 /* i */
            iaload
            aload 3 /* old */
            iload 4 /* i */
            iconst_1
            iadd
            iaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.put:(II)V
         9: .line 1171
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 2
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            iload 2 /* oldLength */
            if_icmplt 7
        end local 4 // int i
        11: .line 1178
            return
        end local 3 // int[] old
        end local 2 // int oldLength
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0   12     1  newCapacity  I
            1   12     2    oldLength  I
            2   12     3          old  [I
            6   11     4            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int element
         0: .line 1183
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.mask:(I)I
            iconst_1
            ishl
            istore 2 /* index */
        start local 2 // int index
         1: .line 1184
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 2 /* index */
            iaload
            istore 3 /* keyAtIndex */
        start local 3 // int keyAtIndex
         2: .line 1186
            iload 3 /* keyAtIndex */
            iload 1 /* element */
            if_icmpeq 3
            iload 3 /* keyAtIndex */
            ifne 4
         3: .line 1188
      StackMap locals: int int
      StackMap stack:
            iload 2 /* index */
            ireturn
         4: .line 1191
      StackMap locals:
      StackMap stack:
            iload 3 /* keyAtIndex */
            iconst_1
            if_icmpne 5
            iload 2 /* index */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_m1
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* removedIndex */
        start local 4 // int removedIndex
         7: .line 1192
            iconst_2
            istore 5 /* i */
        start local 5 // int i
         8: goto 20
         9: .line 1194
      StackMap locals: int int
      StackMap stack:
            iload 2 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
        10: .line 1195
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 6 /* nextIndex */
            iaload
            istore 3 /* keyAtIndex */
        11: .line 1196
            iload 3 /* keyAtIndex */
            iload 1 /* element */
            if_icmpne 13
        12: .line 1198
            iload 6 /* nextIndex */
            ireturn
        13: .line 1200
      StackMap locals: int
      StackMap stack:
            iload 3 /* keyAtIndex */
            ifne 17
        14: .line 1202
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 15
            iload 6 /* nextIndex */
            goto 16
      StackMap locals:
      StackMap stack:
        15: iload 4 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        16: ireturn
        17: .line 1204
      StackMap locals:
      StackMap stack:
            iload 3 /* keyAtIndex */
            iconst_1
            if_icmpne 19
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 1206
            iload 6 /* nextIndex */
            istore 4 /* removedIndex */
        end local 6 // int nextIndex
        19: .line 1192
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 2
      StackMap locals:
      StackMap stack:
        20: iload 5 /* i */
            bipush 8
            if_icmplt 9
        end local 5 // int i
        21: .line 1209
            aload 0 /* this */
            iload 1 /* element */
            iload 4 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probeTwo:(II)I
            ireturn
        end local 4 // int removedIndex
        end local 3 // int keyAtIndex
        end local 2 // int index
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int element
        start local 2 // int removedIndex
         0: .line 1214
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.spreadTwoAndMask:(I)I
            iconst_1
            ishl
            istore 3 /* index */
        start local 3 // int index
         1: .line 1215
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 14
         3: .line 1217
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 4 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            iconst_1
            isub
            iand
            istore 5 /* nextIndex */
        start local 5 // int nextIndex
         4: .line 1218
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 5 /* nextIndex */
            iaload
            istore 6 /* keyAtIndex */
        start local 6 // int keyAtIndex
         5: .line 1219
            iload 6 /* keyAtIndex */
            iload 1 /* element */
            if_icmpne 7
         6: .line 1221
            iload 5 /* nextIndex */
            ireturn
         7: .line 1223
      StackMap locals: int int
      StackMap stack:
            iload 6 /* keyAtIndex */
            ifne 11
         8: .line 1225
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 9
            iload 5 /* nextIndex */
            goto 10
      StackMap locals:
      StackMap stack:
         9: iload 2 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        10: ireturn
        11: .line 1227
      StackMap locals:
      StackMap stack:
            iload 6 /* keyAtIndex */
            iconst_1
            if_icmpne 13
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 1229
            iload 5 /* nextIndex */
            istore 2 /* removedIndex */
        end local 6 // int keyAtIndex
        end local 5 // int nextIndex
        13: .line 1215
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 2
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            bipush 8
            if_icmplt 3
        end local 4 // int i
        15: .line 1232
            aload 0 /* this */
            iload 1 /* element */
            iload 2 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.probeThree:(II)I
            ireturn
        end local 3 // int index
        end local 2 // int removedIndex
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int element
        start local 2 // int removedIndex
         0: .line 1237
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadOne:(I)I
            iconst_1
            ishl
            istore 3 /* nextIndex */
        start local 3 // int nextIndex
         1: .line 1238
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadTwo:(I)I
            invokestatic java.lang.Integer.reverse:(I)I
            iconst_1
            ior
            istore 4 /* spreadTwo */
        start local 4 // int spreadTwo
         2: .line 1242
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* nextIndex */
            iconst_1
            ishr
            iload 4 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.mask:(I)I
            iconst_1
            ishl
            istore 3 /* nextIndex */
         3: .line 1243
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 3 /* nextIndex */
            iaload
            istore 5 /* keyAtIndex */
        start local 5 // int keyAtIndex
         4: .line 1244
            iload 5 /* keyAtIndex */
            iload 1 /* element */
            if_icmpne 6
         5: .line 1246
            iload 3 /* nextIndex */
            ireturn
         6: .line 1248
      StackMap locals: int
      StackMap stack:
            iload 5 /* keyAtIndex */
            ifne 10
         7: .line 1250
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 8
            iload 3 /* nextIndex */
            goto 9
      StackMap locals:
      StackMap stack:
         8: iload 2 /* removedIndex */
      StackMap locals:
      StackMap stack: int
         9: ireturn
        10: .line 1252
      StackMap locals:
      StackMap stack:
            iload 5 /* keyAtIndex */
            iconst_1
            if_icmpne 2
            iload 2 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 1254
            iload 3 /* nextIndex */
            istore 2 /* removedIndex */
        end local 5 // int keyAtIndex
        12: .line 1240
            goto 2
        end local 4 // int spreadTwo
        end local 3 // int nextIndex
        end local 2 // int removedIndex
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int element
         0: .line 1262
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadOne:(I)I
            istore 2 /* code */
        start local 2 // int code
         1: .line 1263
            aload 0 /* this */
            iload 2 /* code */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.mask:(I)I
            ireturn
        end local 2 // int code
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int element
         0: .line 1268
            iload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.intSpreadTwo:(I)I
            istore 2 /* code */
        start local 2 // int code
         1: .line 1269
            aload 0 /* this */
            iload 2 /* code */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.mask:(I)I
            ireturn
        end local 2 // int code
        end local 1 // int element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            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 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int spread
         0: .line 1274
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            arraylength
            iconst_1
            ishr
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  protected void allocateTable(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int sizeToAllocate
         0: .line 1279
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            iconst_1
            ishl
            newarray 10
            putfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
         1: .line 1280
            return
        end local 1 // int sizeToAllocate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    2     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 // int key
         0: .line 1284
            iload 0 /* key */
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int key
      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 // int key
         0: .line 1289
            iload 0 /* key */
            iconst_1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int key
      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 // int key
         0: .line 1294
            iload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifne 1
            iload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int key
      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=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
        start local 1 // int index
         0: .line 1300
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 1 /* index */
            iconst_2
            imul
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isEmptyKey:(I)Z
            ifne 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.keysValues:[I
            iload 1 /* index */
            iconst_2
            imul
            iaload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.isRemovedKey:(I)Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

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

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

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

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

  public org.eclipse.collections.api.map.primitive.MutableIntIntMap withoutKey(int);
    descriptor: (I)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.withoutKey:(I)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

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

  public org.eclipse.collections.api.map.primitive.MutableIntIntMap withoutAllKeys(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap.withoutAllKeys:(Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  private static void lambda$2(org.eclipse.collections.api.map.primitive.MutableIntIntMap, int, int);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;II)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=3, args_size=3
        start local 1 // int key
        start local 2 // int value
         0: .line 1045
            aload 0
            iload 2 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.containsKey:(I)Z
            ifeq 2
         1: .line 1047
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* value */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " found at key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0
            iload 2 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.get:(I)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 /* key */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1049
      StackMap locals:
      StackMap stack:
            aload 0
            iload 2 /* value */
            iload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.put:(II)V
         3: .line 1050
            return
        end local 2 // int value
        end local 1 // int key
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     1    key  I
            0    4     2  value  I

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 3
          -1647345003: 3
               111375: 1
           1282355003: 2
              default: 4
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "put"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_0
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "removeKey"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_2
            istore 2
      StackMap locals:
      StackMap stack:
         4: iload 2
            lookupswitch { // 3
                    0: 5
                    1: 6
                    2: 7
              default: 8
          }
      StackMap locals:
      StackMap stack:
         5: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 5
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/IntIntProcedure"
            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 "(II)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/IntIntHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(II)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.IntIntHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;
              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:
                  (II)V
                  org/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap.put(II)V (5)
                  (II)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/IntIntHashMap"
            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.IntIntHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap;)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/IntIntHashMap.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/IntIntProcedure"
            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 "(II)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/IntIntHashMap"
            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/MutableIntIntMap;II)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.MutableIntIntMap
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;)Lorg/eclipse/collections/api/block/procedure/primitive/IntIntProcedure;
              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:
                  (II)V
                  org/eclipse/collections/impl/map/mutable/primitive/IntIntHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;II)V (6)
                  (II)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: "IntIntHashMap.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$InternalIntIterator  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeySet  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeySetIterator  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeyValuesView  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeyValuesView$InternalKeyValuesIterator  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeysView  org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$ValuesCollection
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  protected SentinelValues = org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap$SentinelValues of org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableIntValuesMap
  private InternalIntIterator = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$InternalIntIterator of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
  private KeySet = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeySet of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
  private KeySetIterator = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeySetIterator of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
  private KeyValuesView = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeyValuesView of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
  private KeysView = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$KeysView of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap
  private ValuesCollection = org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap$ValuesCollection of org.eclipse.collections.impl.map.mutable.primitive.IntIntHashMap