public interface org.eclipse.collections.api.map.primitive.MutableIntByteMap extends org.eclipse.collections.api.map.primitive.IntByteMap, org.eclipse.collections.api.map.primitive.MutableByteValuesMap
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.eclipse.collections.api.map.primitive.MutableIntByteMap
  super_class: java.lang.Object
{
  public abstract void put(int, byte);
    descriptor: (IB)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putPair(org.eclipse.collections.api.tuple.primitive.IntBytePair);
    descriptor: (Lorg/eclipse/collections/api/tuple/primitive/IntBytePair;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.map.primitive.MutableIntByteMap this
        start local 1 // org.eclipse.collections.api.tuple.primitive.IntBytePair keyValuePair
         0: .line 38
            aload 0 /* this */
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.IntBytePair.getOne:()I
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.IntBytePair.getTwo:()B
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntByteMap.put:(IB)V
         1: .line 39
            return
        end local 1 // org.eclipse.collections.api.tuple.primitive.IntBytePair keyValuePair
        end local 0 // org.eclipse.collections.api.map.primitive.MutableIntByteMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
            0    2     1  keyValuePair  Lorg/eclipse/collections/api/tuple/primitive/IntBytePair;
    MethodParameters:
              Name  Flags
      keyValuePair  

  public abstract void putAll(org.eclipse.collections.api.map.primitive.IntByteMap);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/IntByteMap;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      map   

  public abstract void removeKey(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract void remove(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract byte removeKeyIfAbsent(int, byte);
    descriptor: (IB)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract byte getIfAbsentPut(int, byte);
    descriptor: (IB)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract byte getIfAbsentPut(int, org.eclipse.collections.api.block.function.primitive.ByteFunction0);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/ByteFunction0;)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      key       
      function  

  public abstract byte getIfAbsentPutWithKey(int, org.eclipse.collections.api.block.function.primitive.IntToByteFunction);
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntToByteFunction;)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      key       
      function  

  public abstract <P> byte getIfAbsentPutWith(int, org.eclipse.collections.api.block.function.primitive.ByteFunction<? super P>, );
    descriptor: (ILorg/eclipse/collections/api/block/function/primitive/ByteFunction;Ljava/lang/Object;)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <P:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/primitive/ByteFunction<-TP;>;TP;)B
    MethodParameters:
           Name  Flags
      key        
      function   
      parameter  

  public abstract byte updateValue(int, byte, org.eclipse.collections.api.block.function.primitive.ByteToByteFunction);
    descriptor: (IBLorg/eclipse/collections/api/block/function/primitive/ByteToByteFunction;)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                      Name  Flags
      key                   
      initialValueIfAbsent  
      function              

  public abstract org.eclipse.collections.api.map.primitive.MutableByteIntMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableByteIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap select(org.eclipse.collections.api.block.predicate.primitive.IntBytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntBytePredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      predicate  

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap reject(org.eclipse.collections.api.block.predicate.primitive.IntBytePredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntBytePredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      predicate  

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap withKeyValue(int, byte);
    descriptor: (IB)Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap withoutKey(int);
    descriptor: (I)Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap withoutAllKeys(org.eclipse.collections.api.IntIterable);
    descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      keys  

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.eclipse.collections.api.map.primitive.MutableIntByteMap asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntByteMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract byte addToValue(int, byte);
    descriptor: (IB)B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      key        
      toBeAdded  

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

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

  public org.eclipse.collections.api.map.primitive.ByteIntMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/ByteIntMap;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface org.eclipse.collections.api.map.primitive.MutableIntByteMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableByteIntMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "MutableIntByteMap.java"