public abstract class org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet implements org.eclipse.collections.api.set.primitive.MutableLongSet
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet
  super_class: java.lang.Object
{
  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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  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 54
            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 59
            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 64
            lload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isEmptyKey:(J)Z
            ifne 1
            lload 0 /* key */
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.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   

  protected abstract long getKeyAtIndex(int);
    descriptor: (I)J
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  protected abstract int getTableSize();
    descriptor: ()I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected abstract org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap getOuter();
    descriptor: ()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected abstract org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues getSentinelValues();
    descriptor: ()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  public void forEach(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
         0: .line 78
            aload 0 /* this */
            aload 1 /* procedure */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.each:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
         1: .line 79
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public void each(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
         0: .line 87
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.forEachKey:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
         1: .line 88
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.LongProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;
    MethodParameters:
           Name  Flags
      procedure  

  public int count(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 93
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 94
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 96
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 4
         3: .line 98
            iinc 2 /* count */ 1
         4: .line 100
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 6
         5: .line 102
            iinc 2 /* count */ 1
         6: .line 105
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 107
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 10
         9: .line 109
            iinc 2 /* count */ 1
        10: .line 105
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 3 // int i
        12: .line 112
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   13     2      count  I
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 118
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 5
         1: .line 120
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 3
         2: .line 122
            iconst_1
            ireturn
         3: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 5
         4: .line 126
            iconst_1
            ireturn
         5: .line 129
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 131
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 9
         8: .line 133
            iconst_1
            ireturn
         9: .line 129
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 7
        end local 2 // int i
        11: .line 136
            iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 5
         1: .line 144
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 3
         2: .line 146
            iconst_0
            ireturn
         3: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 5
         4: .line 150
            iconst_0
            ireturn
         5: .line 153
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 155
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 9
         8: .line 157
            iconst_0
            ireturn
         9: .line 153
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 7
        end local 2 // int i
        11: .line 160
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 166
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 5
         1: .line 168
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 3
         2: .line 170
            iconst_0
            ireturn
         3: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 5
         4: .line 174
            iconst_0
            ireturn
         5: .line 177
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 179
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 9
         8: .line 181
            iconst_0
            ireturn
         9: .line 177
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 7
        end local 2 // int i
        11: .line 184
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean add(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long element
         0: .line 190
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call add() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  element  J
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(long[]);
    descriptor: ([J)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long[] source
         0: .line 196
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call addAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // long[] source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  source  [J
    MethodParameters:
        Name  Flags
      source  

  public boolean addAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.LongIterable source
         0: .line 202
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call addAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.collections.api.LongIterable source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  source  Lorg/eclipse/collections/api/LongIterable;
    MethodParameters:
        Name  Flags
      source  

  public org.eclipse.collections.api.set.primitive.MutableLongSet select(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 208
            new org.eclipse.collections.impl.set.mutable.primitive.LongHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.set.primitive.MutableLongSet result
         1: .line 209
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 211
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 4
         3: .line 213
            aload 2 /* result */
            lconst_0
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
         4: .line 215
      StackMap locals: org.eclipse.collections.api.set.primitive.MutableLongSet
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 6
         5: .line 217
            aload 2 /* result */
            lconst_1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
         6: .line 220
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 222
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 10
         9: .line 224
            aload 2 /* result */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
        10: .line 220
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 3 // int i
        12: .line 227
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.set.primitive.MutableLongSet result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   13     2     result  Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.primitive.MutableLongSet reject(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
         0: .line 233
            new org.eclipse.collections.impl.set.mutable.primitive.LongHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.set.primitive.MutableLongSet result
         1: .line 234
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 236
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 4
         3: .line 238
            aload 2 /* result */
            lconst_0
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
         4: .line 240
      StackMap locals: org.eclipse.collections.api.set.primitive.MutableLongSet
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 6
         5: .line 242
            aload 2 /* result */
            lconst_1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
         6: .line 245
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 247
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
            aload 1 /* predicate */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifne 10
         9: .line 249
            aload 2 /* result */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
        10: .line 245
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 3 // int i
        12: .line 252
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.set.primitive.MutableLongSet result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   13     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            1   13     2     result  Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            7   12     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.primitive.MutableLongSet with(long);
    descriptor: (J)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long element
         0: .line 258
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call with() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  element  J
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.set.primitive.MutableLongSet without(long);
    descriptor: (J)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long element
         0: .line 264
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call without() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // long element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  element  J
    MethodParameters:
         Name  Flags
      element  

  public org.eclipse.collections.api.set.primitive.MutableLongSet withAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.LongIterable elements
         0: .line 270
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call withAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.collections.api.LongIterable elements
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  elements  Lorg/eclipse/collections/api/LongIterable;
    MethodParameters:
          Name  Flags
      elements  

  public org.eclipse.collections.api.set.primitive.MutableLongSet withoutAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.LongIterable elements
         0: .line 276
            new java.lang.UnsupportedOperationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cannot call withoutAll() on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.collections.api.LongIterable elements
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  elements  Lorg/eclipse/collections/api/LongIterable;
    MethodParameters:
          Name  Flags
      elements  

  public <V> org.eclipse.collections.api.set.MutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
         0: .line 282
            getstatic org.eclipse.collections.impl.factory.Sets.mutable:Lorg/eclipse/collections/api/factory/set/MutableSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.MutableSetFactory.with:()Lorg/eclipse/collections/api/set/MutableSet;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.set.MutableSet result
         1: .line 283
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 285
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 287
            aload 2 /* result */
            aload 1 /* function */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
         4: .line 289
      StackMap locals: org.eclipse.collections.api.set.MutableSet
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 291
            aload 2 /* result */
            aload 1 /* function */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
         6: .line 294
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 296
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
         9: .line 298
            aload 2 /* result */
            aload 1 /* function */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.function.primitive.LongToObjectFunction.valueOf:(J)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
        10: .line 294
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 3 // int i
        12: .line 301
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.collections.api.set.MutableSet result
        end local 1 // org.eclipse.collections.api.block.function.primitive.LongToObjectFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   13     1  function  Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;
            1   13     2    result  Lorg/eclipse/collections/api/set/MutableSet<TV;>;
            7   12     3         i  I
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/MutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public boolean remove(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long key
         0: .line 307
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            istore 3 /* oldSize */
        start local 3 // int oldSize
         1: .line 308
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            lload 1 /* key */
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.removeKey:(J)V
         2: .line 309
            iload 3 /* oldSize */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            if_icmpeq 3
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         3: iconst_0
            ireturn
        end local 3 // int oldSize
        end local 1 // long key
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    4     1      key  J
            1    4     3  oldSize  I
    MethodParameters:
      Name  Flags
      key   

  public boolean removeAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.LongIterable source
         0: .line 315
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 316
            aload 1 /* source */
            invokeinterface org.eclipse.collections.api.LongIterable.longIterator:()Lorg/eclipse/collections/api/iterator/LongIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.LongIterator iterator
         2: .line 317
            goto 4
         3: .line 319
      StackMap locals: int org.eclipse.collections.api.iterator.LongIterator
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.next:()J
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.removeKey:(J)V
         4: .line 317
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
            ifne 3
         5: .line 321
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            if_icmpeq 6
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 3 // org.eclipse.collections.api.iterator.LongIterator iterator
        end local 2 // int oldSize
        end local 1 // org.eclipse.collections.api.LongIterable source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    7     1    source  Lorg/eclipse/collections/api/LongIterable;
            1    7     2   oldSize  I
            2    7     3  iterator  Lorg/eclipse/collections/api/iterator/LongIterator;
    MethodParameters:
        Name  Flags
      source  

  public boolean removeAll(long[]);
    descriptor: ([J)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long[] source
         0: .line 327
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 328
            aload 1 /* source */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 5
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet long[] int top top int int long[]
      StackMap stack:
         2: aload 7
            iload 5
            laload
            lstore 3 /* item */
        start local 3 // long item
         3: .line 330
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            lload 3 /* item */
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.removeKey:(J)V
        end local 3 // long item
         4: .line 328
            iinc 5 1
      StackMap locals:
      StackMap stack:
         5: iload 5
            iload 6
            if_icmplt 2
         6: .line 332
            iload 2 /* oldSize */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            if_icmpeq 7
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet long[] int
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // int oldSize
        end local 1 // long[] source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    8     1   source  [J
            1    8     2  oldSize  I
            3    4     3     item  J
    MethodParameters:
        Name  Flags
      source  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 338
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.clear:()V
         1: .line 339
            return
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public long detectIfNone(org.eclipse.collections.api.block.predicate.primitive.LongPredicate, long);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        start local 2 // long ifNone
         0: .line 344
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 5
         1: .line 346
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 3
         2: .line 348
            lconst_0
            lreturn
         3: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 5
         4: .line 352
            lconst_1
            lreturn
         5: .line 355
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 357
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.LongPredicate.accept:(J)Z
            ifeq 9
         8: .line 359
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            lreturn
         9: .line 355
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 7
        end local 4 // int i
        11: .line 362
            lload 2 /* ifNone */
            lreturn
        end local 2 // long ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.LongPredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;
            0   12     2     ifNone  J
            6   11     4          i  I
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public org.eclipse.collections.api.set.primitive.MutableLongSet asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 368
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableLongSet.of:(Lorg/eclipse/collections/api/set/primitive/MutableLongSet;)Lorg/eclipse/collections/impl/set/mutable/primitive/UnmodifiableLongSet;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public org.eclipse.collections.api.set.primitive.MutableLongSet asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 374
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.SynchronizedLongSet.of:(Lorg/eclipse/collections/api/set/primitive/MutableLongSet;)Lorg/eclipse/collections/impl/set/mutable/primitive/SynchronizedLongSet;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 380
            lconst_0
            lstore 1 /* result */
        start local 1 // long result
         1: .line 381
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 383
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 385
            lload 1 /* result */
            lconst_0
            ladd
            lstore 1 /* result */
         4: .line 387
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 389
            lload 1 /* result */
            lconst_1
            ladd
            lstore 1 /* result */
         6: .line 392
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 394
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
         9: .line 396
            lload 1 /* result */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            ladd
            lstore 1 /* result */
        10: .line 392
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 3 // int i
        12: .line 399
            lload 1 /* result */
            lreturn
        end local 1 // long result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            1   13     1  result  J
            7   12     3       i  I

  public long max();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 405
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.isEmpty:()Z
            ifeq 2
         1: .line 407
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 410
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 1 /* max */
        start local 1 // long max
         3: .line 411
            iconst_0
            istore 3 /* isMaxSet */
        start local 3 // boolean isMaxSet
         4: .line 413
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 11
         5: .line 415
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 417
            lconst_0
            lstore 1 /* max */
         7: .line 418
            iconst_1
            istore 3 /* isMaxSet */
         8: .line 420
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 11
         9: .line 422
            lconst_1
            lstore 1 /* max */
        10: .line 423
            iconst_1
            istore 3 /* isMaxSet */
        11: .line 426
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        12: goto 17
        13: .line 428
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 16
            iload 3 /* isMaxSet */
            ifeq 14
            lload 1 /* max */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            lcmp
            ifge 16
        14: .line 430
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            lstore 1 /* max */
        15: .line 431
            iconst_1
            istore 3 /* isMaxSet */
        16: .line 426
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 13
        end local 4 // int i
        18: .line 434
            lload 1 /* max */
            lreturn
        end local 3 // boolean isMaxSet
        end local 1 // long max
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            3   19     1       max  J
            4   19     3  isMaxSet  Z
           12   18     4         i  I

  public long maxIfEmpty(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long defaultValue
         0: .line 440
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.isEmpty:()Z
            ifeq 2
         1: .line 442
            lload 1 /* defaultValue */
            lreturn
         2: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.max:()J
            lreturn
        end local 1 // long defaultValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    3     1  defaultValue  J
    MethodParameters:
              Name  Flags
      defaultValue  

  public long min();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 451
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.isEmpty:()Z
            ifeq 2
         1: .line 453
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 456
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 1 /* min */
        start local 1 // long min
         3: .line 457
            iconst_0
            istore 3 /* isMinSet */
        start local 3 // boolean isMinSet
         4: .line 459
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 11
         5: .line 461
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 8
         6: .line 463
            lconst_0
            lstore 1 /* min */
         7: .line 464
            iconst_1
            istore 3 /* isMinSet */
         8: .line 466
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 11
            iload 3 /* isMinSet */
            ifne 11
         9: .line 468
            lconst_1
            lstore 1 /* min */
        10: .line 469
            iconst_1
            istore 3 /* isMinSet */
        11: .line 472
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        12: goto 17
        13: .line 474
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 16
            iload 3 /* isMinSet */
            ifeq 14
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            lload 1 /* min */
            lcmp
            ifge 16
        14: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            lstore 1 /* min */
        15: .line 477
            iconst_1
            istore 3 /* isMinSet */
        16: .line 472
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 13
        end local 4 // int i
        18: .line 480
            lload 1 /* min */
            lreturn
        end local 3 // boolean isMinSet
        end local 1 // long min
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            3   19     1       min  J
            4   19     3  isMinSet  Z
           12   18     4         i  I

  public long minIfEmpty(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long defaultValue
         0: .line 486
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.isEmpty:()Z
            ifeq 2
         1: .line 488
            lload 1 /* defaultValue */
            lreturn
         2: .line 491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.min:()J
            lreturn
        end local 1 // long defaultValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    3     1  defaultValue  J
    MethodParameters:
              Name  Flags
      defaultValue  

  public double average();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 497
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isEmpty:()Z
            ifeq 2
         1: .line 499
            new java.lang.ArithmeticException
            dup
            invokespecial java.lang.ArithmeticException.<init>:()V
            athrow
         2: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.sum:()J
            l2d
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.size:()I
            i2d
            ddiv
            dreturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public double median();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 507
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isEmpty:()Z
            ifeq 2
         1: .line 509
            new java.lang.ArithmeticException
            dup
            invokespecial java.lang.ArithmeticException.<init>:()V
            athrow
         2: .line 511
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.toSortedArray:()[J
            astore 1 /* sortedArray */
        start local 1 // long[] sortedArray
         3: .line 512
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            ishr
            istore 2 /* middleIndex */
        start local 2 // int middleIndex
         4: .line 513
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            if_icmple 8
            aload 1 /* sortedArray */
            arraylength
            iconst_1
            iand
            ifne 8
         5: .line 515
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            laload
            lstore 3 /* first */
        start local 3 // long first
         6: .line 516
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            iconst_1
            isub
            laload
            lstore 5 /* second */
        start local 5 // long second
         7: .line 517
            lload 3 /* first */
            l2d
            lload 5 /* second */
            l2d
            dadd
            ldc 2.0
            ddiv
            dreturn
        end local 5 // long second
        end local 3 // long first
         8: .line 519
      StackMap locals: long[] int
      StackMap stack:
            aload 1 /* sortedArray */
            iload 2 /* middleIndex */
            laload
            l2d
            dreturn
        end local 2 // int middleIndex
        end local 1 // long[] sortedArray
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            3    9     1  sortedArray  [J
            4    9     2  middleIndex  I
            6    8     3        first  J
            7    8     5       second  J

  public long[] toSortedArray();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 525
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.toArray:()[J
            astore 1 /* array */
        start local 1 // long[] array
         1: .line 526
            aload 1 /* array */
            invokestatic java.util.Arrays.sort:([J)V
         2: .line 527
            aload 1 /* array */
            areturn
        end local 1 // long[] array
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            1    3     1  array  [J

  public org.eclipse.collections.api.list.primitive.MutableLongList toSortedList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableLongList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 533
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.newList:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/LongArrayList;
            invokevirtual org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.sortThis:()Lorg/eclipse/collections/impl/list/mutable/primitive/LongArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public long[] toArray();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 539
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 540
            iload 1 /* size */
            newarray 11
            astore 2 /* result */
        start local 2 // long[] result
         2: .line 541
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            new org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet$1
            dup
            aload 0 /* this */
            aload 2 /* result */
            invokespecial org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet$1.<init>:(Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;[J)V
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.forEachKey:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)V
         3: .line 551
            aload 2 /* result */
            areturn
        end local 2 // long[] result
        end local 1 // int size
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            1    4     1    size  I
            2    4     2  result  [J

  public boolean contains(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long value
         0: .line 557
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            lload 1 /* value */
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.containsKey:(J)Z
            ireturn
        end local 1 // long value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    1     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public boolean containsAll(long[]);
    descriptor: ([J)Z
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // long[] source
         0: .line 563
            aload 1 /* source */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 5
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet long[] top top int int long[]
      StackMap stack:
         1: aload 6
            iload 4
            laload
            lstore 2 /* item */
        start local 2 // long item
         2: .line 565
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            lload 2 /* item */
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.containsKey:(J)Z
            ifne 4
         3: .line 567
            iconst_0
            ireturn
        end local 2 // long item
         4: .line 563
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
         5: iload 4
            iload 5
            if_icmplt 1
         6: .line 570
            iconst_1
            ireturn
        end local 1 // long[] source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    7     1  source  [J
            2    4     2    item  J
    MethodParameters:
        Name  Flags
      source  

  public boolean containsAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
        start local 1 // org.eclipse.collections.api.LongIterable source
         0: .line 576
            aload 1 /* source */
            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 577
            goto 4
         2: .line 579
      StackMap locals: org.eclipse.collections.api.iterator.LongIterator
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.next:()J
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.containsKey:(J)Z
            ifne 4
         3: .line 581
            iconst_0
            ireturn
         4: .line 577
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
            ifne 2
         5: .line 584
            iconst_1
            ireturn
        end local 2 // org.eclipse.collections.api.iterator.LongIterator iterator
        end local 1 // org.eclipse.collections.api.LongIterable source
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    6     1    source  Lorg/eclipse/collections/api/LongIterable;
            1    6     2  iterator  Lorg/eclipse/collections/api/iterator/LongIterator;
    MethodParameters:
        Name  Flags
      source  

  public org.eclipse.collections.api.list.primitive.MutableLongList toList();
    descriptor: ()Lorg/eclipse/collections/api/list/primitive/MutableLongList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 590
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.list.mutable.primitive.LongArrayList.newList:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/list/mutable/primitive/LongArrayList;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public org.eclipse.collections.api.set.primitive.MutableLongSet toSet();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 596
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.set.mutable.primitive.LongHashSet.newSet:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/set/mutable/primitive/LongHashSet;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public org.eclipse.collections.api.bag.primitive.MutableLongBag toBag();
    descriptor: ()Lorg/eclipse/collections/api/bag/primitive/MutableLongBag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 602
            aload 0 /* this */
            invokestatic org.eclipse.collections.impl.bag.mutable.primitive.LongHashBag.newBag:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/impl/bag/mutable/primitive/LongHashBag;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public org.eclipse.collections.api.LazyLongIterable asLazy();
    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.AbstractMutableLongKeySet this
         0: .line 608
            new org.eclipse.collections.impl.lazy.primitive.LazyLongIterableAdapter
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.lazy.primitive.LazyLongIterableAdapter.<init>:(Lorg/eclipse/collections/api/LongIterable;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction;)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.AbstractMutableLongKeySet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction function
         0: .line 614
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 615
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 617
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 619
            aload 2 /* function */
            aload 3 /* result */
            lconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction.valueOf:(Ljava/lang/Object;J)Ljava/lang/Object;
            astore 3 /* result */
         4: .line 621
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 623
            aload 2 /* function */
            aload 3 /* result */
            lconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction.valueOf:(Ljava/lang/Object;J)Ljava/lang/Object;
            astore 3 /* result */
         6: .line 626
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 628
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
         9: .line 630
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction.valueOf:(Ljava/lang/Object;J)Ljava/lang/Object;
            astore 3 /* result */
        10: .line 626
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 4 // int i
        12: .line 633
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   13     1  injectedValue  TT;
            0   13     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction<-TT;+TT;>;
            1   13     3         result  TT;
            7   12     4              i  I
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/eclipse/collections/api/block/function/primitive/ObjectLongToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  public org.eclipse.collections.api.set.primitive.ImmutableLongSet toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 639
            getstatic org.eclipse.collections.impl.factory.primitive.LongSets.immutable:Lorg/eclipse/collections/api/factory/set/primitive/ImmutableLongSetFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.set.primitive.ImmutableLongSetFactory.withAll:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
         0: .line 645
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.size:()I
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  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.AbstractMutableLongKeySet this
         0: .line 651
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.isEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  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.AbstractMutableLongKeySet this
         0: .line 657
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getOuter:()Lorg/eclipse/collections/impl/map/mutable/primitive/MutableLongKeysMap;
            invokeinterface org.eclipse.collections.impl.map.mutable.primitive.MutableLongKeysMap.notEmpty:()Z
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  public boolean equals(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.AbstractMutableLongKeySet this
        start local 1 // java.lang.Object obj
         0: .line 663
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 665
            iconst_1
            ireturn
         2: .line 668
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.eclipse.collections.api.set.primitive.LongSet
            ifne 4
         3: .line 670
            iconst_0
            ireturn
         4: .line 673
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.collections.api.set.primitive.LongSet
            astore 2 /* other */
        start local 2 // org.eclipse.collections.api.set.primitive.LongSet other
         5: .line 674
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.size:()I
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.set.primitive.LongSet.size:()I
            if_icmpne 6
            aload 0 /* this */
            aload 2 /* other */
            invokeinterface org.eclipse.collections.api.set.primitive.LongSet.toArray:()[J
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.containsAll:([J)Z
            ifeq 6
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.api.set.primitive.LongSet
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // org.eclipse.collections.api.set.primitive.LongSet other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0    7     1    obj  Ljava/lang/Object;
            5    7     2  other  Lorg/eclipse/collections/api/set/primitive/LongSet;
    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.AbstractMutableLongKeySet this
         0: .line 680
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 682
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 6
         2: .line 684
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 4
         3: .line 686
            iinc 1 /* result */ 0
         4: .line 688
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 6
         5: .line 690
            iinc 1 /* result */ 1
         6: .line 693
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         7: goto 11
         8: .line 695
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 10
         9: .line 697
            iload 1 /* result */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 1 /* result */
        10: .line 693
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 8
        end local 2 // int i
        12: .line 701
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            1   13     1  result  I
            7   12     2       i  I

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

  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.AbstractMutableLongKeySet this
         0: .line 713
            aload 0 /* this */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.makeString:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;

  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.AbstractMutableLongKeySet this
        start local 1 // java.lang.String separator
         0: .line 719
            aload 0 /* this */
            ldc ""
            aload 1 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.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.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            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.AbstractMutableLongKeySet this
        start local 1 // java.lang.String start
        start local 2 // java.lang.String separator
        start local 3 // java.lang.String end
         0: .line 725
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 4 /* stringBuilder */
        start local 4 // java.lang.Appendable stringBuilder
         1: .line 726
            aload 0 /* this */
            aload 4 /* stringBuilder */
            aload 1 /* start */
            aload 2 /* separator */
            aload 3 /* end */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 727
            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.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            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.AbstractMutableLongKeySet this
        start local 1 // java.lang.Appendable appendable
         0: .line 733
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ", "
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;)V
         1: .line 734
            return
        end local 1 // java.lang.Appendable appendable
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            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.AbstractMutableLongKeySet this
        start local 1 // java.lang.Appendable appendable
        start local 2 // java.lang.String separator
         0: .line 739
            aload 0 /* this */
            aload 1 /* appendable */
            ldc ""
            aload 2 /* separator */
            ldc ""
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.appendString:(Ljava/lang/Appendable;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         1: .line 740
            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.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            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=7, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet 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 747
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 748
            iconst_1
            istore 5 /* first */
        start local 5 // boolean first
         2: .line 749
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            ifnull 11
         3: .line 751
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsZeroKey:Z
            ifeq 6
         4: .line 753
            aload 1 /* appendable */
            lconst_0
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         5: .line 754
            iconst_0
            istore 5 /* first */
         6: .line 756
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getSentinelValues:()Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractSentinelValues;
            getfield org.eclipse.collections.impl.map.mutable.primitive.AbstractSentinelValues.containsOneKey:Z
            ifeq 11
         7: .line 758
            iload 5 /* first */
            ifne 9
         8: .line 760
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         9: .line 762
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            lconst_1
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        10: .line 763
            iconst_0
            istore 5 /* first */
        11: .line 766
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        12: goto 19
        13: .line 768
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.isNonSentinel:(J)Z
            ifeq 18
        14: .line 770
            iload 5 /* first */
            ifne 16
        15: .line 772
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        16: .line 774
      StackMap locals:
      StackMap stack:
            aload 1 /* appendable */
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getKeyAtIndex:(I)J
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        17: .line 775
            iconst_0
            istore 5 /* first */
        18: .line 766
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.getTableSize:()I
            if_icmplt 13
        end local 6 // int i
        20: .line 778
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 5 // boolean first
        21: .line 779
            goto 24
        22: .line 780
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet 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
        23: .line 782
            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
        24: .line 784
      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.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   25     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   25     1  appendable  Ljava/lang/Appendable;
            0   25     2       start  Ljava/lang/String;
            0   25     3   separator  Ljava/lang/String;
            0   25     4         end  Ljava/lang/String;
            2   21     5       first  Z
           12   20     6           i  I
           23   24     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    21      22  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

  public org.eclipse.collections.api.RichIterable<org.eclipse.collections.api.LongIterable> 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.AbstractMutableLongKeySet this
        start local 1 // int size
         0: .line 789
            iload 1 /* size */
            ifgt 2
         1: .line 791
            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 793
      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.empty:()Lorg/eclipse/collections/api/list/MutableList;
            astore 2 /* result */
        start local 2 // org.eclipse.collections.api.list.MutableList result
         3: .line 794
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.notEmpty:()Z
            ifeq 17
         4: .line 796
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.size:()I
            iload 1 /* size */
            if_icmpgt 7
         5: .line 798
            aload 2 /* result */
            getstatic org.eclipse.collections.impl.factory.primitive.LongSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableLongSetFactory;
            aload 0 /* this */
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableLongSetFactory.withAll:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            invokeinterface org.eclipse.collections.api.list.MutableList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 799
            goto 17
         7: .line 802
      StackMap locals: org.eclipse.collections.api.list.MutableList
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.longIterator:()Lorg/eclipse/collections/api/iterator/MutableLongIterator;
            astore 3 /* iterator */
        start local 3 // org.eclipse.collections.api.iterator.LongIterator iterator
         8: .line 803
            goto 16
         9: .line 805
      StackMap locals: org.eclipse.collections.api.iterator.LongIterator
      StackMap stack:
            getstatic org.eclipse.collections.impl.factory.primitive.LongSets.mutable:Lorg/eclipse/collections/api/factory/set/primitive/MutableLongSetFactory;
            invokeinterface org.eclipse.collections.api.factory.set.primitive.MutableLongSetFactory.empty:()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            astore 4 /* batch */
        start local 4 // org.eclipse.collections.api.set.primitive.MutableLongSet batch
        10: .line 806
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: goto 14
        12: .line 808
      StackMap locals: org.eclipse.collections.api.set.primitive.MutableLongSet int
      StackMap stack:
            aload 4 /* batch */
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.next:()J
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.add:(J)Z
            pop
        13: .line 806
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iload 1 /* size */
            if_icmpge 15
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
            ifne 12
        end local 5 // int i
        15: .line 810
      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.set.primitive.MutableLongSet batch
        16: .line 803
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface org.eclipse.collections.api.iterator.LongIterator.hasNext:()Z
            ifne 9
        end local 3 // org.eclipse.collections.api.iterator.LongIterator iterator
        17: .line 814
      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.AbstractMutableLongKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/AbstractMutableLongKeySet;
            0   18     1      size  I
            3   18     2    result  Lorg/eclipse/collections/api/list/MutableList<Lorg/eclipse/collections/api/LongIterable;>;
            8   17     3  iterator  Lorg/eclipse/collections/api/iterator/LongIterator;
           10   16     4     batch  Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
           11   15     5         i  I
    Signature: (I)Lorg/eclipse/collections/api/RichIterable<Lorg/eclipse/collections/api/LongIterable;>;
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.collections.api.collection.primitive.ImmutableLongCollection toImmutable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/ImmutableLongCollection;
    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.AbstractMutableLongKeySet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection with(long);
    descriptor: (J)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.with:(J)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection withAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.withAll:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable select(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)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
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection withoutAll(org.eclipse.collections.api.LongIterable);
    descriptor: (Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.withoutAll:(Lorg/eclipse/collections/api/LongIterable;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)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.primitive.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.MutableCollection collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
    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.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.SetIterable collect(org.eclipse.collections.api.block.function.primitive.LongToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/SetIterable;
    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.LongToObjectFunction
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.collect:(Lorg/eclipse/collections/api/block/function/primitive/LongToObjectFunction;)Lorg/eclipse/collections/api/set/MutableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    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.AbstractMutableLongKeySet.asSynchronized:()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.LongSet tap(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/set/primitive/LongSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection tap(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable tap(org.eclipse.collections.api.block.procedure.primitive.LongProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)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
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/LongProcedure;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.LongIterable reject(org.eclipse.collections.api.block.predicate.primitive.LongPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)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
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/LongPredicate;)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    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.AbstractMutableLongKeySet.asUnmodifiable:()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection newEmpty();
    descriptor: ()Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface org.eclipse.collections.api.set.primitive.MutableLongSet.newEmpty:()Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.collection.primitive.MutableLongCollection without(long);
    descriptor: (J)Lorg/eclipse/collections/api/collection/primitive/MutableLongCollection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet.without:(J)Lorg/eclipse/collections/api/set/primitive/MutableLongSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "AbstractMutableLongKeySet.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet$1
InnerClasses:
  org.eclipse.collections.impl.map.mutable.primitive.AbstractMutableLongKeySet$1