public interface org.eclipse.collections.api.map.primitive.MutableIntIntMap extends org.eclipse.collections.api.map.primitive.IntIntMap, org.eclipse.collections.api.map.primitive.MutableIntValuesMap
minor version: 0
major version: 59
flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
this_class: org.eclipse.collections.api.map.primitive.MutableIntIntMap
super_class: java.lang.Object
{
public abstract void put(int, int);
descriptor: (II)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
value
public void putPair(org.eclipse.collections.api.tuple.primitive.IntIntPair);
descriptor: (Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokeinterface org.eclipse.collections.api.tuple.primitive.IntIntPair.getOne:()I
aload 1
invokeinterface org.eclipse.collections.api.tuple.primitive.IntIntPair.getTwo:()I
invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.put:(II)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
0 2 1 keyValuePair Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;
MethodParameters:
Name Flags
keyValuePair
public abstract void putAll(org.eclipse.collections.api.map.primitive.IntIntMap);
descriptor: (Lorg/eclipse/collections/api/map/primitive/IntIntMap;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
map
public abstract void updateValues(org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction);
descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntIntToIntFunction;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
function
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 int removeKeyIfAbsent(int, int);
descriptor: (II)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
value
public abstract int getIfAbsentPut(int, int);
descriptor: (II)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
value
public abstract int getIfAbsentPut(int, org.eclipse.collections.api.block.function.primitive.IntFunction0);
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
function
public abstract int getIfAbsentPutWithKey(int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
function
public abstract <P> int getIfAbsentPutWith(int, org.eclipse.collections.api.block.function.primitive.IntFunction<? super P>, );
descriptor: (ILorg/eclipse/collections/api/block/function/primitive/IntFunction;Ljava/lang/Object;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: <P:Ljava/lang/Object;>(ILorg/eclipse/collections/api/block/function/primitive/IntFunction<-TP;>;TP;)I
MethodParameters:
Name Flags
key
function
parameter
public abstract int updateValue(int, int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
descriptor: (IILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
initialValueIfAbsent
function
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap select(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap reject(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
predicate
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap withKeyValue(int, int);
descriptor: (II)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
value
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap withoutKey(int);
descriptor: (I)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap withoutAllKeys(org.eclipse.collections.api.IntIterable);
descriptor: (Lorg/eclipse/collections/api/IntIterable;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
keys
public org.eclipse.collections.api.map.primitive.MutableIntIntMap withAllKeyValues(java.lang.Iterable<org.eclipse.collections.api.tuple.primitive.IntIntPair>);
descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 3
goto 3
StackMap locals: org.eclipse.collections.api.map.primitive.MutableIntIntMap java.lang.Iterable top java.util.Iterator
StackMap stack:
1: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast org.eclipse.collections.api.tuple.primitive.IntIntPair
astore 2
start local 2 2: aload 0
aload 2
invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.putPair:(Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;)V
end local 2 3: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
0 5 1 keyValuePairs Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;>;
2 3 2 keyValuePair Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;
Signature: (Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/primitive/IntIntPair;>;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
MethodParameters:
Name Flags
keyValuePairs
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap asUnmodifiable();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract org.eclipse.collections.api.map.primitive.MutableIntIntMap asSynchronized();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public abstract int addToValue(int, int);
descriptor: (II)I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
key
toBeAdded
public org.eclipse.collections.api.map.primitive.IntIntMap select(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/IntIntMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.IntIntMap reject(org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate);
descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/IntIntMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/IntIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.map.primitive.IntIntMap flipUniqueValues();
descriptor: ()Lorg/eclipse/collections/api/map/primitive/IntIntMap;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokeinterface org.eclipse.collections.api.map.primitive.MutableIntIntMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableIntIntMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
SourceFile: "MutableIntIntMap.java"