class org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet extends org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableByteSet implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet
  super_class: org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableByteSet
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

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

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

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

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

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

  private final byte[] keys;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int occupiedWithData;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean containsZeroKey;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean containsOneKey;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(byte[], int, boolean, boolean);
    descriptor: ([BIZZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // byte[] keys
        start local 2 // int occupiedWithData
        start local 3 // boolean containsZeroKey
        start local 4 // boolean containsOneKey
         0: .line 48
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableByteSet.<init>:()V
         1: .line 50
            aload 0 /* this */
            aload 1 /* keys */
            putfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
         2: .line 51
            aload 0 /* this */
            iload 2 /* occupiedWithData */
            putfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.occupiedWithData:I
         3: .line 52
            aload 0 /* this */
            iload 3 /* containsZeroKey */
            putfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
         4: .line 53
            aload 0 /* this */
            iload 4 /* containsOneKey */
            putfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
         5: .line 54
            return
        end local 4 // boolean containsOneKey
        end local 3 // boolean containsZeroKey
        end local 2 // int occupiedWithData
        end local 1 // byte[] keys
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0    6     1              keys  [B
            0    6     2  occupiedWithData  I
            0    6     3   containsZeroKey  Z
            0    6     4    containsOneKey  Z
    MethodParameters:
                  Name  Flags
      keys              
      occupiedWithData  
      containsZeroKey   
      containsOneKey    

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

  private static boolean isRemovedKey(byte);
    descriptor: (B)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // byte key
         0: .line 63
            iload 0 /* key */
            iconst_1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // byte key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  B
    MethodParameters:
      Name  Flags
      key   

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

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 74
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 75
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
         2: .line 77
            iinc 1 /* result */ 0
         3: .line 79
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
         4: .line 81
            iinc 1 /* result */ 1
         5: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 12
         6: .line 85
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         7: goto 11
         8: .line 87
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 10
         9: .line 89
            iload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            iadd
            istore 1 /* result */
        10: .line 85
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 8
        end local 2 // int i
        12: .line 93
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            1   13     1  result  I
            7   12     2       i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.occupiedWithData:I
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: int
         1: iconst_0
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet
      StackMap stack: int int
         2: iadd
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack: int
         3: iconst_0
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet
      StackMap stack: int int
         4: iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;

  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.ImmutableByteMapKeySet 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 107
            aload 1 /* appendable */
            aload 2 /* start */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         1: .line 108
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         2: .line 109
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 5
         3: .line 111
            aload 1 /* appendable */
            iconst_0
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         4: .line 112
            iinc 5 /* count */ 1
         5: .line 114
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 10
         6: .line 116
            iload 5 /* count */
            ifle 8
         7: .line 118
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
         8: .line 120
      StackMap locals:
      StackMap stack:
            iinc 5 /* count */ 1
         9: .line 121
            aload 1 /* appendable */
            iconst_1
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        10: .line 123
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        11: goto 18
        12: .line 125
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 6 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 17
        13: .line 127
            iload 5 /* count */
            ifle 15
        14: .line 129
            aload 1 /* appendable */
            aload 3 /* separator */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        15: .line 131
      StackMap locals:
      StackMap stack:
            iinc 5 /* count */ 1
        16: .line 132
            aload 1 /* appendable */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 6 /* i */
            baload
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        17: .line 123
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 6 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 12
        end local 6 // int i
        19: .line 135
            aload 1 /* appendable */
            aload 4 /* end */
            invokeinterface java.lang.Appendable.append:(Ljava/lang/CharSequence;)Ljava/lang/Appendable;
            pop
        end local 5 // int count
        20: .line 136
            goto 23
        21: .line 137
      StackMap locals: org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet 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
        22: .line 139
            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
        23: .line 141
      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.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   24     1  appendable  Ljava/lang/Appendable;
            0   24     2       start  Ljava/lang/String;
            0   24     3   separator  Ljava/lang/String;
            0   24     4         end  Ljava/lang/String;
            2   20     5       count  I
           11   19     6           i  I
           22   23     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    20      21  Class java.io.IOException
    MethodParameters:
            Name  Flags
      appendable  
      start       
      separator   
      end         

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

  public byte[] toArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 152
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.size:()I
            newarray 8
            astore 1 /* array */
        start local 1 // byte[] array
         1: .line 153
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         2: .line 154
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 5
         3: .line 156
            aload 1 /* array */
            iload 2 /* index */
            iconst_0
            bastore
         4: .line 157
            iinc 2 /* index */ 1
         5: .line 159
      StackMap locals: byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 8
         6: .line 161
            aload 1 /* array */
            iload 2 /* index */
            iconst_1
            bastore
         7: .line 162
            iinc 2 /* index */ 1
         8: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 16
         9: .line 166
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 15
        11: .line 168
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 14
        12: .line 170
            aload 1 /* array */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            bastore
        13: .line 171
            iinc 2 /* index */ 1
        14: .line 166
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 11
        end local 3 // int i
        16: .line 175
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 2 // int index
        end local 1 // byte[] array
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            1   17     1  array  [B
            2   17     2  index  I
           10   16     3      i  I

  public byte[] toArray(byte[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // byte[] array
         0: .line 181
            aload 1 /* array */
            arraylength
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.size:()I
            if_icmpge 2
         1: .line 183
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.size:()I
            newarray 8
            astore 1 /* array */
         2: .line 185
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* index */
        start local 2 // int index
         3: .line 186
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 6
         4: .line 188
            aload 1 /* array */
            iload 2 /* index */
            iconst_0
            bastore
         5: .line 189
            iinc 2 /* index */ 1
         6: .line 191
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 9
         7: .line 193
            aload 1 /* array */
            iload 2 /* index */
            iconst_1
            bastore
         8: .line 194
            iinc 2 /* index */ 1
         9: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 17
        10: .line 198
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: goto 16
        12: .line 200
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 15
        13: .line 202
            aload 1 /* array */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            bastore
        14: .line 203
            iinc 2 /* index */ 1
        15: .line 198
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 12
        end local 3 // int i
        17: .line 207
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 2 // int index
        end local 1 // byte[] array
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   18     1  array  [B
            3   18     2  index  I
           11   17     3      i  I
    MethodParameters:
       Name  Flags
      array  

  public boolean contains(byte);
    descriptor: (B)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // byte value
         0: .line 213
            iload 1 /* value */
            ifne 2
         1: .line 215
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ireturn
         2: .line 217
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            iconst_1
            if_icmpne 4
         3: .line 219
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ireturn
         4: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.probe:(B)I
            baload
            iload 1 /* value */
            if_icmpne 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 1 // byte value
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0    6     1  value  B
    MethodParameters:
       Name  Flags
      value  

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

  public void each(org.eclipse.collections.api.block.procedure.primitive.ByteProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/ByteProcedure;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure
         0: .line 236
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 2
         1: .line 238
            aload 1 /* procedure */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ByteProcedure.value:(B)V
         2: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 4
         3: .line 242
            aload 1 /* procedure */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ByteProcedure.value:(B)V
         4: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 11
         5: .line 246
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 248
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 9
         8: .line 250
            aload 1 /* procedure */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.procedure.primitive.ByteProcedure.value:(B)V
         9: .line 246
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 7
        end local 2 // int i
        11: .line 254
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.ByteProcedure procedure
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   12     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/ByteProcedure;
            6   11     2          i  I
    MethodParameters:
           Name  Flags
      procedure  

  public org.eclipse.collections.api.set.primitive.ImmutableByteSet select(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 259
            new org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet result
         1: .line 260
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 3
         2: .line 262
            aload 2 /* result */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         3: .line 264
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 5
         4: .line 266
            aload 2 /* result */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         5: .line 268
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 270
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 9
         8: .line 272
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         9: .line 268
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 275
            aload 2 /* result */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
        end local 2 // org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            1   12     2     result  Lorg/eclipse/collections/impl/set/mutable/primitive/ByteHashSet;
            6   11     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public org.eclipse.collections.api.set.primitive.ImmutableByteSet reject(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 281
            new org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet
            dup
            invokespecial org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet result
         1: .line 282
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 3
         2: .line 284
            aload 2 /* result */
            iconst_0
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         3: .line 286
      StackMap locals: org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 5
         4: .line 288
            aload 2 /* result */
            iconst_1
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         5: .line 290
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 292
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 9
         8: .line 294
            aload 2 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.add:(B)Z
            pop
         9: .line 290
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 297
            aload 2 /* result */
            invokevirtual org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet.toImmutable:()Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
        end local 2 // org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet result
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            1   12     2     result  Lorg/eclipse/collections/impl/set/mutable/primitive/ByteHashSet;
            6   11     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public <V> org.eclipse.collections.api.set.ImmutableSet<V> collect(org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ByteToObjectFunction;)Lorg/eclipse/collections/api/set/ImmutableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction function
         0: .line 303
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.size:()I
            invokestatic org.eclipse.collections.impl.set.mutable.UnifiedSet.newSet:(I)Lorg/eclipse/collections/impl/set/mutable/UnifiedSet;
            astore 2 /* target */
        start local 2 // org.eclipse.collections.api.set.MutableSet target
         1: .line 304
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
         2: .line 306
            aload 2 /* target */
            aload 1 /* function */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction.valueOf:(B)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
         3: .line 308
      StackMap locals: org.eclipse.collections.api.set.MutableSet
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
         4: .line 310
            aload 2 /* target */
            aload 1 /* function */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction.valueOf:(B)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
         5: .line 312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 12
         6: .line 314
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 316
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 10
         9: .line 318
            aload 2 /* target */
            aload 1 /* function */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction.valueOf:(B)Ljava/lang/Object;
            invokeinterface org.eclipse.collections.api.set.MutableSet.add:(Ljava/lang/Object;)Z
            pop
        10: .line 314
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 8
        end local 3 // int i
        12: .line 322
      StackMap locals:
      StackMap stack:
            aload 2 /* target */
            invokeinterface org.eclipse.collections.api.set.MutableSet.toImmutable:()Lorg/eclipse/collections/api/set/ImmutableSet;
            areturn
        end local 2 // org.eclipse.collections.api.set.MutableSet target
        end local 1 // org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction function
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   13     1  function  Lorg/eclipse/collections/api/block/function/primitive/ByteToObjectFunction<+TV;>;
            1   13     2    target  Lorg/eclipse/collections/api/set/MutableSet<TV;>;
            7   12     3         i  I
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/ByteToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/set/ImmutableSet<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public byte detectIfNone(org.eclipse.collections.api.block.predicate.primitive.BytePredicate, byte);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;B)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        start local 2 // byte ifNone
         0: .line 328
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 2
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 2
         1: .line 330
            iconst_0
            ireturn
         2: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 4
         3: .line 334
            iconst_1
            ireturn
         4: .line 336
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 9
         6: .line 338
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 8
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 8
         7: .line 340
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            ireturn
         8: .line 336
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 6
        end local 3 // int i
        10: .line 343
            iload 2 /* ifNone */
            ireturn
        end local 2 // byte ifNone
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   11     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            0   11     2     ifNone  B
            5   10     3          i  I
    MethodParameters:
           Name  Flags
      predicate  
      ifNone     

  public int count(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 349
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 350
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 3
         2: .line 352
            iinc 2 /* count */ 1
         3: .line 354
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 5
         4: .line 356
            iinc 2 /* count */ 1
         5: .line 358
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 360
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 9
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 9
         8: .line 362
            iinc 2 /* count */ 1
         9: .line 358
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 365
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   12     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            1   12     2      count  I
            6   11     3          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 371
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 2
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 2
         1: .line 373
            iconst_1
            ireturn
         2: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 4
         3: .line 377
            iconst_1
            ireturn
         4: .line 379
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 9
         6: .line 381
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 8
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 8
         7: .line 383
            iconst_1
            ireturn
         8: .line 379
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 6
        end local 2 // int i
        10: .line 386
            iconst_0
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   11     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            5   10     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 392
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 2
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 2
         1: .line 394
            iconst_0
            ireturn
         2: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 4
         3: .line 398
            iconst_0
            ireturn
         4: .line 400
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 9
         6: .line 402
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 8
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifne 8
         7: .line 404
            iconst_0
            ireturn
         8: .line 400
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 6
        end local 2 // int i
        10: .line 407
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   11     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            5   10     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
         0: .line 413
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 2
            aload 1 /* predicate */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 2
         1: .line 415
            iconst_0
            ireturn
         2: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 4
            aload 1 /* predicate */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 4
         3: .line 419
            iconst_0
            ireturn
         4: .line 421
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 9
         6: .line 423
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 8
            aload 1 /* predicate */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.predicate.primitive.BytePredicate.accept:(B)Z
            ifeq 8
         7: .line 425
            iconst_0
            ireturn
         8: .line 421
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 6
        end local 2 // int i
        10: .line 428
            iconst_1
            ireturn
        end local 1 // org.eclipse.collections.api.block.predicate.primitive.BytePredicate predicate
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   11     1  predicate  Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;
            5   10     2          i  I
    MethodParameters:
           Name  Flags
      predicate  

  public long sum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 434
            lconst_0
            lstore 1 /* result */
        start local 1 // long result
         1: .line 435
            lconst_0
            lstore 3 /* compensation */
        start local 3 // long compensation
         2: .line 436
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 7
         3: .line 438
            lconst_0
            lload 3 /* compensation */
            lsub
            lstore 5 /* adjustedValue */
        start local 5 // long adjustedValue
         4: .line 439
            lload 1 /* result */
            lload 5 /* adjustedValue */
            ladd
            lstore 7 /* nextSum */
        start local 7 // long nextSum
         5: .line 440
            lload 7 /* nextSum */
            lload 1 /* result */
            lsub
            lload 5 /* adjustedValue */
            lsub
            lstore 3 /* compensation */
         6: .line 441
            lload 7 /* nextSum */
            lstore 1 /* result */
        end local 7 // long nextSum
        end local 5 // long adjustedValue
         7: .line 443
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 12
         8: .line 445
            lconst_1
            lload 3 /* compensation */
            lsub
            lstore 5 /* adjustedValue */
        start local 5 // long adjustedValue
         9: .line 446
            lload 1 /* result */
            lload 5 /* adjustedValue */
            ladd
            lstore 7 /* nextSum */
        start local 7 // long nextSum
        10: .line 447
            lload 7 /* nextSum */
            lload 1 /* result */
            lsub
            lload 5 /* adjustedValue */
            lsub
            lstore 3 /* compensation */
        11: .line 448
            lload 7 /* nextSum */
            lstore 1 /* result */
        end local 7 // long nextSum
        end local 5 // long adjustedValue
        12: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 22
        13: .line 452
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        14: goto 21
        15: .line 454
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 5 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 20
        16: .line 456
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 5 /* i */
            baload
            i2l
            lload 3 /* compensation */
            lsub
            lstore 6 /* adjustedValue */
        start local 6 // long adjustedValue
        17: .line 457
            lload 1 /* result */
            lload 6 /* adjustedValue */
            ladd
            lstore 8 /* nextSum */
        start local 8 // long nextSum
        18: .line 458
            lload 8 /* nextSum */
            lload 1 /* result */
            lsub
            lload 6 /* adjustedValue */
            lsub
            lstore 3 /* compensation */
        19: .line 459
            lload 8 /* nextSum */
            lstore 1 /* result */
        end local 8 // long nextSum
        end local 6 // long adjustedValue
        20: .line 452
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 5 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 15
        end local 5 // int i
        22: .line 463
      StackMap locals:
      StackMap stack:
            lload 1 /* result */
            lreturn
        end local 3 // long compensation
        end local 1 // long result
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            1   23     1         result  J
            2   23     3   compensation  J
            4    7     5  adjustedValue  J
            5    7     7        nextSum  J
            9   12     5  adjustedValue  J
           10   12     7        nextSum  J
           14   22     5              i  I
           17   20     6  adjustedValue  J
           18   20     8        nextSum  J

  public byte max();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 469
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isEmpty:()Z
            ifeq 2
         1: .line 471
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 474
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* max */
        start local 1 // byte max
         3: .line 475
            iconst_0
            istore 2 /* isMaxSet */
        start local 2 // boolean isMaxSet
         4: .line 477
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 7
         5: .line 479
            iconst_0
            istore 1 /* max */
         6: .line 480
            iconst_1
            istore 2 /* isMaxSet */
         7: .line 482
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 10
            iload 2 /* isMaxSet */
            ifeq 8
            iload 1 /* max */
            iconst_1
            if_icmpge 10
         8: .line 484
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* max */
         9: .line 485
            iconst_1
            istore 2 /* isMaxSet */
        10: .line 487
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: goto 16
        12: .line 489
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 15
            iload 2 /* isMaxSet */
            ifeq 13
            iload 1 /* max */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            if_icmpge 15
        13: .line 491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            istore 1 /* max */
        14: .line 492
            iconst_1
            istore 2 /* isMaxSet */
        15: .line 487
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 12
        end local 3 // int i
        17: .line 495
            iload 1 /* max */
            ireturn
        end local 2 // boolean isMaxSet
        end local 1 // byte max
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            3   18     1       max  B
            4   18     2  isMaxSet  Z
           11   17     3         i  I

  public byte min();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 501
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isEmpty:()Z
            ifeq 2
         1: .line 503
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 506
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* min */
        start local 1 // byte min
         3: .line 507
            iconst_0
            istore 2 /* isMinSet */
        start local 2 // boolean isMinSet
         4: .line 509
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 7
         5: .line 511
            iconst_0
            istore 1 /* min */
         6: .line 512
            iconst_1
            istore 2 /* isMinSet */
         7: .line 514
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 10
            iload 2 /* isMinSet */
            ifeq 8
            iconst_1
            iload 1 /* min */
            if_icmpge 10
         8: .line 516
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* min */
         9: .line 517
            iconst_1
            istore 2 /* isMinSet */
        10: .line 520
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: goto 16
        12: .line 522
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 15
            iload 2 /* isMinSet */
            ifeq 13
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            iload 1 /* min */
            if_icmpge 15
        13: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 3 /* i */
            baload
            istore 1 /* min */
        14: .line 525
            iconst_1
            istore 2 /* isMinSet */
        15: .line 520
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 12
        end local 3 // int i
        17: .line 528
            iload 1 /* min */
            ireturn
        end local 2 // boolean isMinSet
        end local 1 // byte min
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            3   18     1       min  B
            4   18     2  isMinSet  Z
           11   17     3         i  I

  public <T> T injectInto(T, org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction<? super T, ? extends T>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/ObjectByteToObjectFunction;)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.ImmutableByteMapKeySet this
        start local 1 // java.lang.Object injectedValue
        start local 2 // org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction function
         0: .line 534
            aload 1 /* injectedValue */
            astore 3 /* result */
        start local 3 // java.lang.Object result
         1: .line 535
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsZeroKey:Z
            ifeq 3
         2: .line 537
            aload 2 /* function */
            aload 3 /* result */
            iconst_0
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction.valueOf:(Ljava/lang/Object;B)Ljava/lang/Object;
            astore 3 /* result */
         3: .line 539
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.containsOneKey:Z
            ifeq 5
         4: .line 541
            aload 2 /* function */
            aload 3 /* result */
            iconst_1
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction.valueOf:(Ljava/lang/Object;B)Ljava/lang/Object;
            astore 3 /* result */
         5: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            ifnull 12
         6: .line 545
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 11
         8: .line 547
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 4 /* i */
            baload
            invokestatic org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.isNonSentinel:(B)Z
            ifeq 10
         9: .line 549
            aload 2 /* function */
            aload 3 /* result */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 4 /* i */
            baload
            invokeinterface org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction.valueOf:(Ljava/lang/Object;B)Ljava/lang/Object;
            astore 3 /* result */
        10: .line 545
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            if_icmplt 8
        end local 4 // int i
        12: .line 553
      StackMap locals:
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object result
        end local 2 // org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction function
        end local 1 // java.lang.Object injectedValue
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   13     1  injectedValue  TT;
            0   13     2       function  Lorg/eclipse/collections/api/block/function/primitive/ObjectByteToObjectFunction<-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/ObjectByteToObjectFunction<-TT;+TT;>;)TT;
    MethodParameters:
               Name  Flags
      injectedValue  
      function       

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
         0: .line 558
            new org.eclipse.collections.impl.set.immutable.primitive.ImmutableByteSetSerializationProxy
            dup
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.set.immutable.primitive.ImmutableByteSetSerializationProxy.<init>:(Lorg/eclipse/collections/api/set/primitive/ByteSet;)V
            areturn
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;

  int probe(byte);
    descriptor: (B)I
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // byte element
         0: .line 564
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.spreadAndMask:(B)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 565
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 2 /* index */
            baload
            istore 3 /* keyAtIndex */
        start local 3 // byte keyAtIndex
         2: .line 567
            iload 3 /* keyAtIndex */
            iload 1 /* element */
            if_icmpeq 3
            iload 3 /* keyAtIndex */
            ifne 4
         3: .line 569
      StackMap locals: int int
      StackMap stack:
            iload 2 /* index */
            ireturn
         4: .line 572
      StackMap locals:
      StackMap stack:
            iload 3 /* keyAtIndex */
            iconst_1
            if_icmpne 5
            iload 2 /* index */
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_m1
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* removedIndex */
        start local 4 // int removedIndex
         7: .line 573
            iload 2 /* index */
            istore 5 /* nextIndex */
        start local 5 // int nextIndex
         8: .line 574
            bipush 17
            istore 6 /* probe */
        start local 6 // int probe
         9: .line 579
      StackMap locals: int int int
      StackMap stack:
            iload 5 /* nextIndex */
            iload 6 /* probe */
            iadd
            istore 5 /* nextIndex */
        10: .line 580
            iinc 6 /* probe */ 17
        11: .line 581
            iload 5 /* nextIndex */
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            arraylength
            iconst_1
            isub
            iand
            istore 5 /* nextIndex */
        12: .line 582
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 5 /* nextIndex */
            baload
            iload 1 /* element */
            if_icmpne 14
        13: .line 584
            iload 5 /* nextIndex */
            ireturn
        14: .line 586
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 5 /* nextIndex */
            baload
            iconst_1
            if_icmpne 18
        15: .line 588
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 9
        16: .line 590
            iload 5 /* nextIndex */
            istore 4 /* removedIndex */
        17: .line 592
            goto 9
        18: .line 593
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.keys:[B
            iload 5 /* nextIndex */
            baload
            ifne 9
        19: .line 595
            iload 4 /* removedIndex */
            iconst_m1
            if_icmpne 20
            iload 5 /* nextIndex */
            goto 21
      StackMap locals:
      StackMap stack:
        20: iload 4 /* removedIndex */
      StackMap locals:
      StackMap stack: int
        21: ireturn
        end local 6 // int probe
        end local 5 // int nextIndex
        end local 4 // int removedIndex
        end local 3 // byte keyAtIndex
        end local 2 // int index
        end local 1 // byte element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   22     0          this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0   22     1       element  B
            1   22     2         index  I
            2   22     3    keyAtIndex  B
            7   22     4  removedIndex  I
            8   22     5     nextIndex  I
            9   22     6         probe  I
    MethodParameters:
         Name  Flags
      element  

  int spreadAndMask(byte);
    descriptor: (B)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
        start local 1 // byte element
         0: .line 604
            aload 0 /* this */
            iload 1 /* element */
            invokevirtual org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet.mask:(I)I
            ireturn
        end local 1 // byte element
        end local 0 // org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/eclipse/collections/impl/map/mutable/primitive/ImmutableByteMapKeySet;
            0    1     1  element  B
    MethodParameters:
         Name  Flags
      element  

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

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

  public org.eclipse.collections.api.collection.primitive.ImmutableByteCollection select(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableByteCollection;
    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.ImmutableByteMapKeySet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.ByteSet select(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ByteSet;
    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.ImmutableByteMapKeySet.select:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

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

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

  public org.eclipse.collections.api.collection.primitive.ImmutableByteCollection reject(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/collection/primitive/ImmutableByteCollection;
    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.ImmutableByteMapKeySet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.set.primitive.ByteSet reject(org.eclipse.collections.api.block.predicate.primitive.BytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ByteSet;
    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.ImmutableByteMapKeySet.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/BytePredicate;)Lorg/eclipse/collections/api/set/primitive/ImmutableByteSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ImmutableByteMapKeySet.java"
NestMembers:
  org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet$InternalByteIterator
InnerClasses:
  private InternalByteIterator = org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet$InternalByteIterator of org.eclipse.collections.impl.map.mutable.primitive.ImmutableByteMapKeySet