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

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

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

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

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

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

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

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

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

  private long[] keys;
    descriptor: [J
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues<V> sentinelValues;
    descriptor: Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues<TV;>;

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 177
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 175
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
         2: .line 179
            aload 0 /* this */
            bipush 16
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.allocateTable:(I)V
         3: .line 180
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;

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

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

  private int smallestPowerOfTwoGreaterThan(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // int n
         0: .line 200
            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.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    3     1     n  I
    MethodParameters:
      Name  Flags
      n     

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

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

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

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

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

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

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // java.lang.Object obj
         0: .line 241
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 243
            iconst_1
            ireturn
         2: .line 246
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.map.primitive.LongObjectMap
            ifne 4
         3: .line 248
            iconst_0
            ireturn
         4: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.map.primitive.LongObjectMap
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.map.primitive.LongObjectMap other
         5: .line 253
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.size:()I
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.size:()I
            if_icmpeq 7
         6: .line 255
            iconst_0
            ireturn
         7: .line 258
      StackMap locals: org.eclipse.collections.api.map.primitive.LongObjectMap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 10
         8: .line 260
            aload 2 /* other */
            lconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.containsKey:(J)Z
            ifne 9
            aload 2 /* other */
            lconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.containsKey:(J)Z
            ifeq 14
         9: .line 262
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        10: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 12
            aload 2 /* other */
            lconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.containsKey:(J)Z
            ifeq 11
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 2 /* other */
            lconst_0
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.get:(J)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 12
        11: .line 269
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        12: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 14
            aload 2 /* other */
            lconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.containsKey:(J)Z
            ifeq 13
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 2 /* other */
            lconst_1
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.get:(J)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 14
        13: .line 274
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        14: .line 278
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 20
        16: .line 280
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 3 /* i */
            laload
            lstore 4 /* key */
        start local 4 // long key
        17: .line 281
            lload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 19
            aload 2 /* other */
            lload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.containsKey:(J)Z
            ifeq 18
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 2 /* other */
            lload 4 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.LongObjectMap.get:(J)Ljava/lang/Object;
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        18: .line 283
      StackMap locals: long
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // long key
        19: .line 278
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 16
        end local 3 // int i
        21: .line 286
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.map.primitive.LongObjectMap other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   22     1    obj  Ljava/lang/Object;
            5   22     2  other  Lorg/eclipse/collections/api/map/primitive/LongObjectMap<TV;>;
           15   21     3      i  I
           17   19     4    key  J
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 292
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 294
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 10
         2: .line 296
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 6
         3: .line 298
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            ifnonnull 4
            iconst_0
            goto 5
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int
      StackMap stack: int
         4: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int
      StackMap stack: int int
         5: iadd
            istore 1 /* result */
         6: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 10
         7: .line 303
            iload 1 /* result */
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            ifnonnull 8
            iconst_0
            goto 9
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int
      StackMap stack: int int
         8: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int
      StackMap stack: int int int
         9: ixor
            iadd
            istore 1 /* result */
        10: .line 307
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        11: goto 17
        12: .line 309
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 16
        13: .line 311
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            bipush 32
            lushr
            lxor
            l2i
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            ifnonnull 14
            iconst_0
            goto 15
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int int
      StackMap stack: int int
        14: aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int int
      StackMap stack: int int int
        15: ixor
            iadd
            istore 1 /* result */
        16: .line 307
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 12
        end local 2 // int i
        18: .line 314
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            1   19     1  result  I
           11   18     2       i  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 320
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* appendable */
        start local 1 // java.lang.StringBuilder appendable
         1: .line 322
            aload 1 /* appendable */
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 324
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         3: .line 326
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 12
         4: .line 328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 7
         5: .line 330
            aload 1 /* appendable */
            lconst_0
            invokevirtual java.lang.StringBuilder.append:(J)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.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         6: .line 331
            iconst_0
            istore 2 /* first */
         7: .line 333
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 12
         8: .line 335
            iload 2 /* first */
            ifne 10
         9: .line 337
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 339
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            lconst_1
            invokevirtual java.lang.StringBuilder.append:(J)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.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        11: .line 340
            iconst_0
            istore 2 /* first */
        12: .line 343
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 21
        14: .line 345
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 3 /* i */
            laload
            lstore 4 /* key */
        start local 4 // long key
        15: .line 346
            lload 4 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 20
        16: .line 348
            iload 2 /* first */
            ifne 18
        17: .line 350
            aload 1 /* appendable */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        18: .line 352
      StackMap locals: long
      StackMap stack:
            aload 1 /* appendable */
            lload 4 /* key */
            invokevirtual java.lang.StringBuilder.append:(J)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.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        19: .line 353
            iconst_0
            istore 2 /* first */
        end local 4 // long key
        20: .line 343
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 14
        end local 3 // int i
        22: .line 356
            aload 1 /* appendable */
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 358
            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.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            1   24     1  appendable  Ljava/lang/StringBuilder;
            3   24     2       first  Z
           13   22     3           i  I
           15   20     4         key  J

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  public void forEachKey(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
         0: .line 638
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 640
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 642
            aload 1 /* procedure */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongProcedure.value:(J)V
         3: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 646
            aload 1 /* procedure */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongProcedure.value:(J)V
         5: .line 649
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 651
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 9
         8: .line 653
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongProcedure.value:(J)V
         9: .line 649
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 656
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public void forEachKeyValue(org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure<? super V>);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure procedure
         0: .line 661
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 5
         1: .line 663
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 3
         2: .line 665
            aload 1 /* procedure */
            lconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure.value:(JLjava/lang/Object;)V
         3: .line 667
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
         4: .line 669
            aload 1 /* procedure */
            lconst_1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure.value:(JLjava/lang/Object;)V
         5: .line 672
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 674
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 9
         8: .line 676
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure.value:(JLjava/lang/Object;)V
         9: .line 672
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 679
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongObjectProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure<-TV;>;
            6   11     2          i  I
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure<-TV;>;)V
    MethodParameters:
           Name  Flags
      procedure  

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 2262
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         1: .line 2263
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
         2: .line 2264
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
         3: .line 2265
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
            ifeq 6
         4: .line 2267
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            newarray 11
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
         5: .line 2268
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
         6: .line 2270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            lconst_0
            invokestatic java.util.Arrays.fill:([JJ)V
         7: .line 2271
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 2272
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;

  public V put(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 2277
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 7
         1: .line 2279
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 3
         2: .line 2281
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         3: .line 2283
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         4: .line 2284
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2285
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2286
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
         7: .line 2289
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 14
         8: .line 2291
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 10
         9: .line 2293
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        10: .line 2295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
        11: .line 2296
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        12: .line 2297
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        13: .line 2298
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
        14: .line 2301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 4 /* index */
        start local 4 // int index
        15: .line 2303
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 19
        16: .line 2306
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
        17: .line 2307
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aload 3 /* value */
            aastore
        18: .line 2308
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        19: .line 2311
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            aload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        20: .line 2312
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   21     1       key  J
            0   21     3     value  TV;
            4    7     4  oldValue  TV;
           11   14     4  oldValue  TV;
           15   21     4     index  I
           17   19     5  oldValue  TV;
    Signature: (JTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

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

  public boolean containsKey(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
         0: .line 2324
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 3
         1: .line 2326
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 2328
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 6
         4: .line 2330
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 5
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
         6: .line 2332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            laload
            lload 1 /* key */
            lcmp
            ifne 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    8     1   key  J
    MethodParameters:
      Name  Flags
      key   

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

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

  public V getIfAbsent(long, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
         0: .line 2361
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 4
         1: .line 2363
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 2365
      StackMap locals:
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
         3: .line 2367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         4: .line 2369
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 8
         5: .line 2371
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 6
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifne 7
         6: .line 2373
      StackMap locals:
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
         7: .line 2375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
         8: .line 2377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 4 /* index */
        start local 4 // int index
         9: .line 2378
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 11
        10: .line 2380
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        11: .line 2382
      StackMap locals: int
      StackMap stack:
            aload 3 /* ifAbsent */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            areturn
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.Function0 ifAbsent
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   12     1       key  J
            0   12     3  ifAbsent  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            9   12     4     index  I
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      ifAbsent  

  public V getIfAbsentPut(long, );
    descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 2388
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 11
         1: .line 2390
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2392
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         3: .line 2393
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2394
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2395
            aload 3 /* value */
            areturn
         6: .line 2397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 8
         7: .line 2399
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         8: .line 2401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         9: .line 2402
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        10: .line 2403
            aload 3 /* value */
            areturn
        11: .line 2405
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 22
        12: .line 2407
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 17
        13: .line 2409
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        14: .line 2410
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        15: .line 2411
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        16: .line 2412
            aload 3 /* value */
            areturn
        17: .line 2414
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 19
        18: .line 2416
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        19: .line 2418
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        20: .line 2419
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 3 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        21: .line 2420
            aload 3 /* value */
            areturn
        22: .line 2422
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 4 /* index */
        start local 4 // int index
        23: .line 2423
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 25
        24: .line 2425
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        25: .line 2427
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            aload 3 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        26: .line 2428
            aload 3 /* value */
            areturn
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   27     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   27     1    key  J
            0   27     3  value  TV;
           23   27     4  index  I
    Signature: (JTV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V getIfAbsentPut(long, org.eclipse.collections.api.block.function.Function0<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 function
         0: .line 2434
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 13
         1: .line 2436
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2438
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         3: .line 2439
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         4: .line 2440
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2441
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2442
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
         7: .line 2444
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2446
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2448
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        10: .line 2449
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2450
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2451
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        13: .line 2453
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 26
        14: .line 2455
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2457
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        16: .line 2458
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        17: .line 2459
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2460
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2461
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        20: .line 2463
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2465
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2467
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        23: .line 2468
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2469
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2470
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        26: .line 2472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 4 /* index */
        start local 4 // int index
        27: .line 2473
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 29
        28: .line 2475
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        29: .line 2477
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        30: .line 2478
            aload 0 /* this */
            lload 1 /* key */
            aload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        31: .line 2479
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.Function0 function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   32     1       key  J
            0   32     3  function  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            3    7     4     value  TV;
           10   13     4     value  TV;
           16   20     4     value  TV;
           23   26     4     value  TV;
           27   32     4     index  I
           30   32     5     value  TV;
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public <P> V getIfAbsentPutWith(long, org.eclipse.collections.api.block.function.Function<? super P, ? extends V>, );
    descriptor: (JLorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function function
        start local 4 // java.lang.Object parameter
         0: .line 2485
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 13
         1: .line 2487
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2489
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         3: .line 2490
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         4: .line 2491
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2492
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2493
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
         7: .line 2495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2497
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2499
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        10: .line 2500
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2501
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2502
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        13: .line 2504
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 26
        14: .line 2506
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2508
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        16: .line 2509
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        17: .line 2510
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2511
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2512
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        20: .line 2514
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2516
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2518
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        23: .line 2519
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2520
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 5 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2521
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        26: .line 2523
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 5 /* index */
        start local 5 // int index
        27: .line 2524
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 5 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 29
        28: .line 2526
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            areturn
        29: .line 2528
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            aload 4 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
        30: .line 2529
            aload 0 /* this */
            lload 1 /* key */
            aload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        31: .line 2530
            aload 6 /* value */
            areturn
        end local 6 // java.lang.Object value
        end local 5 // int index
        end local 4 // java.lang.Object parameter
        end local 3 // org.eclipse.collections.api.block.function.Function function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   32     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   32     1        key  J
            0   32     3   function  Lorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;
            0   32     4  parameter  TP;
            3    7     5      value  TV;
           10   13     5      value  TV;
           16   20     5      value  TV;
           23   26     5      value  TV;
           27   32     5      index  I
           30   32     6      value  TV;
    Signature: <P:Ljava/lang/Object;>(JLorg/eclipse/collections/api/block/function/Function<-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public V getIfAbsentPutWithKey(long, org.eclipse.collections.api.block.function.primitive.LongToObjectFunction<? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
         0: .line 2536
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 13
         1: .line 2538
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 7
         2: .line 2540
            aload 3 /* function */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         3: .line 2541
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         4: .line 2542
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         5: .line 2543
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         6: .line 2544
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
         7: .line 2546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         8: .line 2548
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
         9: .line 2550
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        10: .line 2551
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
        11: .line 2552
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        12: .line 2553
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        13: .line 2555
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 26
        14: .line 2557
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 20
        15: .line 2559
            aload 3 /* function */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        16: .line 2560
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        17: .line 2561
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        18: .line 2562
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        19: .line 2563
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        20: .line 2565
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 22
        21: .line 2567
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        22: .line 2569
      StackMap locals:
      StackMap stack:
            aload 3 /* function */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        23: .line 2570
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        24: .line 2571
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* value */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        25: .line 2572
            aload 4 /* value */
            areturn
        end local 4 // java.lang.Object value
        26: .line 2574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 4 /* index */
        start local 4 // int index
        27: .line 2575
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 29
        28: .line 2577
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aaload
            areturn
        29: .line 2579
      StackMap locals: int
      StackMap stack:
            aload 3 /* function */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
        30: .line 2580
            aload 0 /* this */
            lload 1 /* key */
            aload 5 /* value */
            iload 4 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        31: .line 2581
            aload 5 /* value */
            areturn
        end local 5 // java.lang.Object value
        end local 4 // int index
        end local 3 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   32     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   32     1       key  J
            0   32     3  function  Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;
            3    7     4     value  TV;
           10   13     4     value  TV;
           16   20     4     value  TV;
           23   26     4     value  TV;
           27   32     4     index  I
           30   32     5     value  TV;
    Signature: (JLorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      function  

  public V updateValue(long, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function<? super V, ? extends V>);
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function function
         0: .line 2587
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 12
         1: .line 2589
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2591
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         3: .line 2592
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2593
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2594
            goto 11
         6: .line 2595
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         7: .line 2597
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         8: .line 2598
            goto 11
         9: .line 2601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
        10: .line 2602
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        11: .line 2604
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
        12: .line 2606
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 24
        13: .line 2608
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 18
        14: .line 2610
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        15: .line 2611
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2612
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2613
            goto 23
        18: .line 2614
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 21
        19: .line 2616
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        20: .line 2617
            goto 23
        21: .line 2620
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        22: .line 2621
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        23: .line 2623
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        24: .line 2625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 5 /* index */
        start local 5 // int index
        25: .line 2626
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 5 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 28
        26: .line 2628
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            aastore
        27: .line 2629
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            areturn
        28: .line 2631
      StackMap locals: int
      StackMap stack:
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.block.function.Function.valueOf:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
        29: .line 2632
            aload 0 /* this */
            lload 1 /* key */
            aload 6 /* value */
            iload 5 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        30: .line 2633
            aload 6 /* value */
            areturn
        end local 6 // java.lang.Object value
        end local 5 // int index
        end local 4 // org.eclipse.collections.api.block.function.Function function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   31     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   31     1       key  J
            0   31     3   factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0   31     4  function  Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;
           25   31     5     index  I
           29   31     6     value  TV;
    Signature: (JLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function<-TV;+TV;>;)TV;
    MethodParameters:
          Name  Flags
      key       
      factory   
      function  

  public <P> V updateValueWith(long, org.eclipse.collections.api.block.function.Function0<? extends V>, org.eclipse.collections.api.block.function.Function2<? super V, ? super P, ? extends V>, );
    descriptor: (JLorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/block/function/Function2;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // org.eclipse.collections.api.block.function.Function0 factory
        start local 4 // org.eclipse.collections.api.block.function.Function2 function
        start local 5 // java.lang.Object parameter
         0: .line 2639
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 12
         1: .line 2641
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 6
         2: .line 2643
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         3: .line 2644
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         4: .line 2645
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         5: .line 2646
            goto 11
         6: .line 2647
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 9
         7: .line 2649
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         8: .line 2650
            goto 11
         9: .line 2653
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
        10: .line 2654
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
        11: .line 2656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            areturn
        12: .line 2658
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 24
        13: .line 2660
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnonnull 18
        14: .line 2662
            aload 0 /* this */
            new org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues
            dup
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.<init>:()V
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        15: .line 2663
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2664
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2665
            goto 23
        18: .line 2666
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 21
        19: .line 2668
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        20: .line 2669
            goto 23
        21: .line 2672
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_1
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        22: .line 2673
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        23: .line 2675
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            areturn
        24: .line 2677
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 6 /* index */
        start local 6 // int index
        25: .line 2678
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 6 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 28
        26: .line 2680
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aload 4 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aaload
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            aastore
        27: .line 2681
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 6 /* index */
            aaload
            areturn
        28: .line 2683
      StackMap locals: int
      StackMap stack:
            aload 4 /* function */
            aload 3 /* factory */
            invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
            aload 5 /* parameter */
            invokeinterface org.eclipse.collections.api.block.function.Function2.value:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 7 /* value */
        start local 7 // java.lang.Object value
        29: .line 2684
            aload 0 /* this */
            lload 1 /* key */
            aload 7 /* value */
            iload 6 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.addKeyValueAtIndex:(JLjava/lang/Object;I)V
        30: .line 2685
            aload 7 /* value */
            areturn
        end local 7 // java.lang.Object value
        end local 6 // int index
        end local 5 // java.lang.Object parameter
        end local 4 // org.eclipse.collections.api.block.function.Function2 function
        end local 3 // org.eclipse.collections.api.block.function.Function0 factory
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   31     1        key  J
            0   31     3    factory  Lorg/eclipse/collections/api/block/function/Function0<+TV;>;
            0   31     4   function  Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;
            0   31     5  parameter  TP;
           25   31     6      index  I
           29   31     7      value  TV;
    Signature: <P:Ljava/lang/Object;>(JLorg/eclipse/collections/api/block/function/Function0<+TV;>;Lorg/eclipse/collections/api/block/function/Function2<-TV;-TP;+TV;>;TP;)TV;
    MethodParameters:
           Name  Flags
      key        
      factory    
      function   
      parameter  

  public V removeKey();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
         0: .line 2691
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isEmptyKey:(J)Z
            ifeq 10
         1: .line 2693
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 2
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifne 3
         2: .line 2695
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         3: .line 2697
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
         4: .line 2698
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 8
         5: .line 2700
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
         6: .line 2701
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
         7: .line 2702
            goto 9
         8: .line 2705
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
         9: .line 2707
      StackMap locals:
      StackMap stack:
            aload 3 /* oldValue */
            areturn
        end local 3 // java.lang.Object oldValue
        10: .line 2709
      StackMap locals:
      StackMap stack:
            lload 1 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isRemovedKey:(J)Z
            ifeq 20
        11: .line 2711
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 12
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifne 13
        12: .line 2713
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        13: .line 2715
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
        14: .line 2716
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 18
        15: .line 2718
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
        16: .line 2719
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
        17: .line 2720
            goto 19
        18: .line 2723
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
        19: .line 2725
      StackMap locals:
      StackMap stack:
            aload 3 /* oldValue */
            areturn
        end local 3 // java.lang.Object oldValue
        20: .line 2727
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probe:(J)I
            istore 3 /* index */
        start local 3 // int index
        21: .line 2728
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 3 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 25
        22: .line 2730
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
        23: .line 2731
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.removeKeyAtIndex:(I)V
        24: .line 2732
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
        25: .line 2734
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 3 // int index
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   26     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   26     1       key  J
            4   10     3  oldValue  TV;
           14   20     3  oldValue  TV;
           21   26     3     index  I
           23   25     4  oldValue  TV;
    Signature: (J)TV;
    MethodParameters:
      Name  Flags
      key   

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

  public org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap<V> withKeyValue(long, V);
    descriptor: (JLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 2746
            aload 0 /* this */
            lload 1 /* key */
            aload 3 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2747
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    2     1    key  J
            0    2     3  value  TV;
    Signature: (JTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

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

  public org.eclipse.collections.api.map.primitive.MutableLongObjectMap<V> withoutAllKeys(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // org.eclipse.collections.api.LongIterable keys
         0: .line 2760
            aload 1 /* keys */
            invokeinterface org.eclipse.collections.api.LongIterable.longIterator:()Lorg/eclipse/collections/api/iterator/LongIterator;
            astore 2 /* iterator */
        start local 2 // org.eclipse.collections.api.iterator.LongIterator iterator
         1: .line 2761
            goto 4
         2: .line 2763
      StackMap locals: org.eclipse.collections.api.iterator.LongIterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.next:()J
            lstore 3 /* item */
        start local 3 // long item
         3: .line 2764
            aload 0 /* this */
            lload 3 /* item */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.removeKey:(J)Ljava/lang/Object;
            pop
        end local 3 // long item
         4: .line 2761
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
            ifne 2
         5: .line 2766
            aload 0 /* this */
            areturn
        end local 2 // org.eclipse.collections.api.iterator.LongIterator iterator
        end local 1 // org.eclipse.collections.api.LongIterable keys
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    6     1      keys  Lorg/eclipse/collections/api/LongIterable;
            1    6     2  iterator  Lorg/eclipse/collections/api/iterator/LongIterator;
            3    4     3      item  J
    Signature: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;
    MethodParameters:
      Name  Flags
      keys  

  public org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap<V> withKeysValues(long, V, long, V);
    descriptor: (JLjava/lang/Object;JLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key1
        start local 3 // java.lang.Object value1
        start local 4 // long key2
        start local 6 // java.lang.Object value2
         0: .line 2771
            aload 0 /* this */
            lload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2772
            aload 0 /* this */
            lload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2773
            aload 0 /* this */
            areturn
        end local 6 // java.lang.Object value2
        end local 4 // long key2
        end local 3 // java.lang.Object value1
        end local 1 // long key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    3     1    key1  J
            0    3     3  value1  TV;
            0    3     4    key2  J
            0    3     6  value2  TV;
    Signature: (JTV;JTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap<V> withKeysValues(long, V, long, V, long, V);
    descriptor: (JLjava/lang/Object;JLjava/lang/Object;JLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=7
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key1
        start local 3 // java.lang.Object value1
        start local 4 // long key2
        start local 6 // java.lang.Object value2
        start local 7 // long key3
        start local 9 // java.lang.Object value3
         0: .line 2778
            aload 0 /* this */
            lload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2779
            aload 0 /* this */
            lload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2780
            aload 0 /* this */
            lload 7 /* key3 */
            aload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 2781
            aload 0 /* this */
            areturn
        end local 9 // java.lang.Object value3
        end local 7 // long key3
        end local 6 // java.lang.Object value2
        end local 4 // long key2
        end local 3 // java.lang.Object value1
        end local 1 // long key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    4     1    key1  J
            0    4     3  value1  TV;
            0    4     4    key2  J
            0    4     6  value2  TV;
            0    4     7    key3  J
            0    4     9  value3  TV;
    Signature: (JTV;JTV;JTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap<V> withKeysValues(long, V, long, V, long, V, long, V);
    descriptor: (JLjava/lang/Object;JLjava/lang/Object;JLjava/lang/Object;JLjava/lang/Object;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=13, args_size=9
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key1
        start local 3 // java.lang.Object value1
        start local 4 // long key2
        start local 6 // java.lang.Object value2
        start local 7 // long key3
        start local 9 // java.lang.Object value3
        start local 10 // long key4
        start local 12 // java.lang.Object value4
         0: .line 2786
            aload 0 /* this */
            lload 1 /* key1 */
            aload 3 /* value1 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 2787
            aload 0 /* this */
            lload 4 /* key2 */
            aload 6 /* value2 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 2788
            aload 0 /* this */
            lload 7 /* key3 */
            aload 9 /* value3 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 2789
            aload 0 /* this */
            lload 10 /* key4 */
            aload 12 /* value4 */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 2790
            aload 0 /* this */
            areturn
        end local 12 // java.lang.Object value4
        end local 10 // long key4
        end local 9 // java.lang.Object value3
        end local 7 // long key3
        end local 6 // java.lang.Object value2
        end local 4 // long key2
        end local 3 // java.lang.Object value1
        end local 1 // long key1
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    5     1    key1  J
            0    5     3  value1  TV;
            0    5     4    key2  J
            0    5     6  value2  TV;
            0    5     7    key3  J
            0    5     9  value3  TV;
            0    5    10    key4  J
            0    5    12  value4  TV;
    Signature: (JTV;JTV;JTV;JTV;)Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  

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

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

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

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // java.io.ObjectOutput out
         0: .line 2814
            aload 1 /* out */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         1: .line 2815
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            ifnull 8
         2: .line 2817
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsZeroKey:Z
            ifeq 5
         3: .line 2819
            aload 1 /* out */
            lconst_0
            invokeinterface java.io.ObjectOutput.writeLong:(J)V
         4: .line 2820
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.zeroValue:Ljava/lang/Object;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         5: .line 2822
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.containsOneKey:Z
            ifeq 8
         6: .line 2824
            aload 1 /* out */
            lconst_1
            invokeinterface java.io.ObjectOutput.writeLong:(J)V
         7: .line 2825
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.sentinelValues:Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap$SentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues.oneValue:Ljava/lang/Object;
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
         8: .line 2828
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         9: goto 14
        10: .line 2830
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 13
        11: .line 2832
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 2 /* i */
            laload
            invokeinterface java.io.ObjectOutput.writeLong:(J)V
        12: .line 2833
            aload 1 /* out */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
        13: .line 2828
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            if_icmplt 10
        end local 2 // int i
        15: .line 2836
            return
        end local 1 // java.io.ObjectOutput out
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   16     1   out  Ljava/io/ObjectOutput;
            9   15     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // java.io.ObjectInput in
         0: .line 2841
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 2842
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 2844
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readLong:()J
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 2842
            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 2846
            return
        end local 2 // int size
        end local 1 // java.io.ObjectInput in
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    7     1    in  Ljava/io/ObjectInput;
            1    7     2  size  I
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  private void addKeyValueAtIndex(long, V, );
    descriptor: (JLjava/lang/Object;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long key
        start local 3 // java.lang.Object value
        start local 4 // int index
         0: .line 2850
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            laload
            lconst_1
            lcmp
            ifne 2
         1: .line 2852
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
         2: .line 2854
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
            ifeq 4
         3: .line 2856
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeys:()V
         4: .line 2858
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* index */
            lload 1 /* key */
            lastore
         5: .line 2859
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 4 /* index */
            aload 3 /* value */
            aastore
         6: .line 2860
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
         7: .line 2861
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.maxOccupiedWithData:()I
            if_icmple 9
         8: .line 2863
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.rehashAndGrow:()V
         9: .line 2865
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int index
        end local 3 // java.lang.Object value
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   10     1    key  J
            0   10     3  value  TV;
            0   10     4  index  I
    Signature: (JTV;I)V
    MethodParameters:
       Name  Flags
      key    
      value  
      index  

  private void removeKeyAtIndex(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // int index
         0: .line 2869
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
            ifeq 2
         1: .line 2871
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeys:()V
         2: .line 2873
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 1 /* index */
            lconst_1
            lastore
         3: .line 2874
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            iload 1 /* index */
            aconst_null
            aastore
         4: .line 2875
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
            iconst_1
            isub
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
         5: .line 2876
            aload 0 /* this */
            dup
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
            iconst_1
            iadd
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
         6: .line 2877
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.maxOccupiedWithSentinels:()I
            if_icmple 8
         7: .line 2879
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.rehash:()V
         8: .line 2881
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    9     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.LongObjectHashMap this
         0: .line 2885
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            newarray 11
            astore 1 /* copy */
        start local 1 // long[] copy
         1: .line 2886
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iconst_0
            aload 1 /* copy */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 2887
            aload 0 /* this */
            aload 1 /* copy */
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
         3: .line 2888
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
         4: .line 2889
            return
        end local 1 // long[] copy
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            1    5     1  copy  [J

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

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

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

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 3021
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.rehash:(I)V
         1: .line 3022
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;

  private void rehashAndGrow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 3026
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            iconst_1
            ishl
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.rehash:(I)V
         1: .line 3027
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;

  private void rehash(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // int newCapacity
         0: .line 3031
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 3032
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            astore 3 /* old */
        start local 3 // long[] old
         2: .line 3033
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
            astore 4 /* oldValues */
        start local 4 // java.lang.Object[] oldValues
         3: .line 3034
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.allocateTable:(I)V
         4: .line 3035
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithData:I
         5: .line 3036
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.occupiedWithSentinels:I
         6: .line 3038
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 11
         8: .line 3040
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap int int long[] java.lang.Object[] int
      StackMap stack:
            aload 3 /* old */
            iload 5 /* i */
            laload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.isNonSentinel:(J)Z
            ifeq 10
         9: .line 3042
            aload 0 /* this */
            aload 3 /* old */
            iload 5 /* i */
            laload
            aload 4 /* oldValues */
            iload 5 /* i */
            aaload
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.put:(JLjava/lang/Object;)Ljava/lang/Object;
            pop
        10: .line 3038
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            iload 2 /* oldLength */
            if_icmplt 8
        end local 5 // int i
        12: .line 3045
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.copyKeysOnWrite:Z
        13: .line 3046
            return
        end local 4 // java.lang.Object[] oldValues
        end local 3 // long[] old
        end local 2 // int oldLength
        end local 1 // int newCapacity
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   14     1  newCapacity  I
            1   14     2    oldLength  I
            2   14     3          old  [J
            3   14     4    oldValues  [Ljava/lang/Object;
            7   12     5            i  I
    MethodParameters:
             Name  Flags
      newCapacity  

  int probe(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long element
         0: .line 3051
            aload 0 /* this */
            lload 1 /* element */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.mask:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 3052
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 3 /* index */
            laload
            lstore 4 /* keyAtIndex */
        start local 4 // long keyAtIndex
         2: .line 3054
            lload 4 /* keyAtIndex */
            lload 1 /* element */
            lcmp
            ifeq 3
            lload 4 /* keyAtIndex */
            lconst_0
            lcmp
            ifne 4
         3: .line 3056
      StackMap locals: int long
      StackMap stack:
            iload 3 /* index */
            ireturn
         4: .line 3059
      StackMap locals:
      StackMap stack:
            lload 4 /* keyAtIndex */
            lconst_1
            lcmp
            ifne 5
            iload 3 /* index */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_m1
      StackMap locals:
      StackMap stack: int
         6: istore 6 /* removedIndex */
        start local 6 // int removedIndex
         7: .line 3060
            iconst_1
            istore 7 /* i */
        start local 7 // int i
         8: goto 20
         9: .line 3062
      StackMap locals: int int
      StackMap stack:
            iload 3 /* index */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            iconst_1
            isub
            iand
            istore 8 /* nextIndex */
        start local 8 // int nextIndex
        10: .line 3063
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 8 /* nextIndex */
            laload
            lstore 4 /* keyAtIndex */
        11: .line 3064
            lload 4 /* keyAtIndex */
            lload 1 /* element */
            lcmp
            ifne 13
        12: .line 3066
            iload 8 /* nextIndex */
            ireturn
        13: .line 3068
      StackMap locals: int
      StackMap stack:
            lload 4 /* keyAtIndex */
            lconst_0
            lcmp
            ifne 17
        14: .line 3070
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 15
            iload 8 /* nextIndex */
            goto 16
      StackMap locals:
      StackMap stack:
        15: iload 6 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        16: ireturn
        17: .line 3072
      StackMap locals:
      StackMap stack:
            lload 4 /* keyAtIndex */
            lconst_1
            lcmp
            ifne 19
            iload 6 /* removedIndex */
            iconst_m1
            if_icmpne 19
        18: .line 3074
            iload 8 /* nextIndex */
            istore 6 /* removedIndex */
        end local 8 // int nextIndex
        19: .line 3060
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 7 /* i */
            iconst_4
            if_icmplt 9
        end local 7 // int i
        21: .line 3077
            aload 0 /* this */
            lload 1 /* element */
            iload 6 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probeTwo:(JI)I
            ireturn
        end local 6 // int removedIndex
        end local 4 // long keyAtIndex
        end local 3 // int index
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   22     1       element  J
            1   22     3         index  I
            2   22     4    keyAtIndex  J
            7   22     6  removedIndex  I
            8   21     7             i  I
           10   19     8     nextIndex  I
    MethodParameters:
         Name  Flags
      element  

  int probeTwo(long, int);
    descriptor: (JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long element
        start local 3 // int removedIndex
         0: .line 3082
            aload 0 /* this */
            lload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.spreadTwoAndMask:(J)I
            istore 4 /* index */
        start local 4 // int index
         1: .line 3083
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         2: goto 14
         3: .line 3085
      StackMap locals: int int
      StackMap stack:
            iload 4 /* index */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            iconst_1
            isub
            iand
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         4: .line 3086
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 6 /* nextIndex */
            laload
            lstore 7 /* keyAtIndex */
        start local 7 // long keyAtIndex
         5: .line 3087
            lload 7 /* keyAtIndex */
            lload 1 /* element */
            lcmp
            ifne 7
         6: .line 3089
            iload 6 /* nextIndex */
            ireturn
         7: .line 3091
      StackMap locals: int long
      StackMap stack:
            lload 7 /* keyAtIndex */
            lconst_0
            lcmp
            ifne 11
         8: .line 3093
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 9
            iload 6 /* nextIndex */
            goto 10
      StackMap locals:
      StackMap stack:
         9: iload 3 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        10: ireturn
        11: .line 3095
      StackMap locals:
      StackMap stack:
            lload 7 /* keyAtIndex */
            lconst_1
            lcmp
            ifne 13
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 13
        12: .line 3097
            iload 6 /* nextIndex */
            istore 3 /* removedIndex */
        end local 7 // long keyAtIndex
        end local 6 // int nextIndex
        13: .line 3083
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iconst_4
            if_icmplt 3
        end local 5 // int i
        15: .line 3100
            aload 0 /* this */
            lload 1 /* element */
            iload 3 /* removedIndex */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.probeThree:(JI)I
            ireturn
        end local 4 // int index
        end local 3 // int removedIndex
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   16     1       element  J
            0   16     3  removedIndex  I
            1   16     4         index  I
            2   15     5             i  I
            4   13     6     nextIndex  I
            5   13     7    keyAtIndex  J
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int probeThree(long, int);
    descriptor: (JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long element
        start local 3 // int removedIndex
         0: .line 3105
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadOne:(J)J
            l2i
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
         1: .line 3106
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadTwo:(J)J
            invokestatic java.lang.Long.reverse:(J)J
            l2i
            iconst_1
            ior
            istore 5 /* spreadTwo */
        start local 5 // int spreadTwo
         2: .line 3110
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextIndex */
            iload 5 /* spreadTwo */
            iadd
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.mask:(I)I
            istore 4 /* nextIndex */
         3: .line 3111
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            iload 4 /* nextIndex */
            laload
            lstore 6 /* keyAtIndex */
        start local 6 // long keyAtIndex
         4: .line 3112
            lload 6 /* keyAtIndex */
            lload 1 /* element */
            lcmp
            ifne 6
         5: .line 3114
            iload 4 /* nextIndex */
            ireturn
         6: .line 3116
      StackMap locals: long
      StackMap stack:
            lload 6 /* keyAtIndex */
            lconst_0
            lcmp
            ifne 10
         7: .line 3118
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 8
            iload 4 /* nextIndex */
            goto 9
      StackMap locals:
      StackMap stack:
         8: iload 3 /* removedIndex */
      StackMap locals:
      StackMap stack: int
         9: ireturn
        10: .line 3120
      StackMap locals:
      StackMap stack:
            lload 6 /* keyAtIndex */
            lconst_1
            lcmp
            ifne 2
            iload 3 /* removedIndex */
            iconst_m1
            if_icmpne 2
        11: .line 3122
            iload 4 /* nextIndex */
            istore 3 /* removedIndex */
        end local 6 // long keyAtIndex
        12: .line 3108
            goto 2
        end local 5 // int spreadTwo
        end local 4 // int nextIndex
        end local 3 // int removedIndex
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0   13     1       element  J
            0   13     3  removedIndex  I
            1   13     4     nextIndex  I
            2   13     5     spreadTwo  I
            4   12     6    keyAtIndex  J
    MethodParameters:
              Name  Flags
      element       
      removedIndex  

  int spreadAndMask(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long element
         0: .line 3130
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadOne:(J)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 3131
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    2     1  element  J
            1    2     3     code  J
    MethodParameters:
         Name  Flags
      element  

  int spreadTwoAndMask(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // long element
         0: .line 3136
            lload 1 /* element */
            invokestatic org.eclipse.collections.impl.SpreadFunctions.longSpreadTwo:(J)J
            lstore 3 /* code */
        start local 3 // long code
         1: .line 3137
            aload 0 /* this */
            lload 3 /* code */
            l2i
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.mask:(I)I
            ireturn
        end local 3 // long code
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    2     1  element  J
            1    2     3     code  J
    MethodParameters:
         Name  Flags
      element  

  private int mask(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // int spread
         0: .line 3142
            iload 1 /* spread */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int spread
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    1     1  spread  I
    MethodParameters:
        Name  Flags
      spread  

  private void allocateTable(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
        start local 1 // int sizeToAllocate
         0: .line 3147
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            newarray 11
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
         1: .line 3148
            aload 0 /* this */
            iload 1 /* sizeToAllocate */
            anewarray java.lang.Object
            putfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.values:[Ljava/lang/Object;
         2: .line 3149
            return
        end local 1 // int sizeToAllocate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;
            0    3     1  sizeToAllocate  I
    MethodParameters:
                Name  Flags
      sizeToAllocate  

  private static boolean isEmptyKey(long);
    descriptor: (J)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long key
         0: .line 3153
            lload 0 /* key */
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // long key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  J
    MethodParameters:
      Name  Flags
      key   

  private static boolean isRemovedKey(long);
    descriptor: (J)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long key
         0: .line 3158
            lload 0 /* key */
            lconst_1
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // long key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  J
    MethodParameters:
      Name  Flags
      key   

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

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

  private int maxOccupiedWithSentinels();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
         0: .line 3175
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap.keys:[J
            arraylength
            iconst_4
            idiv
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap<TV;>;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  private static void lambda$2(org.eclipse.collections.api.map.primitive.MutableObjectLongMap, long, java.lang.Object);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;JLjava/lang/Object;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=3
        start local 1 // long key
        start local 3 // java.lang.Object value
         0: .line 4043
            aload 0
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectLongMap.containsKey:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 4045
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* value */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " found at key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0
            aload 3 /* value */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectLongMap.get:(Ljava/lang/Object;)J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " and key: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 4047
      StackMap locals:
      StackMap stack:
            aload 0
            aload 3 /* value */
            lload 1 /* key */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectLongMap.put:(Ljava/lang/Object;J)V
         3: .line 4048
            return
        end local 3 // java.lang.Object value
        end local 1 // long key
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     1    key  J
            0    4     3  value  TV;

  private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
    descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=3, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
            astore 1
            iconst_m1
            istore 2
            aload 1
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 3
          -1647345005: 1
          -1647345004: 2
          -1647345003: 3
              default: 4
          }
      StackMap locals: java.lang.String int
      StackMap stack:
         1: aload 1
            ldc "lambda$0"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_0
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         2: aload 1
            ldc "lambda$1"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_1
            istore 2
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 1
            ldc "lambda$2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
            iconst_2
            istore 2
      StackMap locals:
      StackMap stack:
         4: iload 2
            lookupswitch { // 3
                    0: 5
                    1: 6
                    2: 7
              default: 8
          }
      StackMap locals:
      StackMap stack:
         5: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
            ldc "value"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
            ldc "(Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "([Ljava/lang/Object;Ljava/lang/Object;I)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            invokedynamic value([Ljava/lang/Object;)Lorg/eclipse/collections/api/block/procedure/primitive/ObjectIntProcedure;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;I)V
                  org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap.lambda$0([Ljava/lang/Object;Ljava/lang/Object;I)V (6)
                  (Ljava/lang/Object;I)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         6: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 7
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure"
            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 "(JLjava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
            ldc "(JLjava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
            invokedynamic value(Lorg/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap;)Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;
              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:
                  (JLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap.lambda$1(JLjava/lang/Object;)V (7)
                  (JLjava/lang/Object;)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         7: aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
            bipush 6
            if_icmpne 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure"
            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 "(JLjava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
            ldc "org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap"
            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/MutableObjectLongMap;JLjava/lang/Object;)V"
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
            aload 0
            iconst_0
            invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
            checkcast org.eclipse.collections.api.map.primitive.MutableObjectLongMap
            invokedynamic value(Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;)Lorg/eclipse/collections/api/block/procedure/primitive/LongObjectProcedure;
              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:
                  (JLjava/lang/Object;)V
                  org/eclipse/collections/impl/map/mutable/primitive/LongObjectHashMap.lambda$2(Lorg/eclipse/collections/api/map/primitive/MutableObjectLongMap;JLjava/lang/Object;)V (6)
                  (JLjava/lang/Object;)V
                  1
            areturn
      StackMap locals:
      StackMap stack:
         8: new java.lang.IllegalArgumentException
            dup
            ldc "Invalid lambda deserialization"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <V:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/map/primitive/MutableLongObjectMap<TV;>;Ljava/io/Externalizable;
SourceFile: "LongObjectHashMap.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$InternalIterator  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeySet  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeySet$1  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeyValuesView  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeyValuesView$InternalKeyValuesIterator  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeysSetIterator  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeysView  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues  org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$ValuesCollection
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private InternalIterator = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$InternalIterator of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  private KeySet = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeySet of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  private KeyValuesView = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeyValuesView of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  private KeysSetIterator = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeysSetIterator of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  private KeysView = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$KeysView of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  private final SentinelValues = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$SentinelValues of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap
  protected ValuesCollection = org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap$ValuesCollection of org.eclipse.collections.impl.map.mutable.primitive.LongObjectHashMap