public interface org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> extends org.eclipse.collections.api.map.primitive.ObjectIntMap<K>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.eclipse.collections.api.map.primitive.MutableObjectIntMap
  super_class: java.lang.Object
{
  public abstract org.eclipse.collections.api.iterator.MutableIntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/MutableIntIterator;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void clear();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void put(K, );
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;I)V
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putPair(org.eclipse.collections.api.tuple.primitive.ObjectIntPair<K>);
    descriptor: (Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
        start local 1 // org.eclipse.collections.api.tuple.primitive.ObjectIntPair keyValuePair
         0: .line 57
            aload 0 /* this */
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ObjectIntPair.getOne:()Ljava/lang/Object;
            aload 1 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ObjectIntPair.getTwo:()I
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectIntMap.put:(Ljava/lang/Object;I)V
         1: .line 58
            return
        end local 1 // org.eclipse.collections.api.tuple.primitive.ObjectIntPair keyValuePair
        end local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
            0    2     1  keyValuePair  Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;
    Signature: (Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;)V
    MethodParameters:
              Name  Flags
      keyValuePair  

  public abstract void putAll(org.eclipse.collections.api.map.primitive.ObjectIntMap<? extends K>);
    descriptor: (Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<+TK;>;)V
    MethodParameters:
      Name  Flags
      map   

  public abstract void updateValues(org.eclipse.collections.api.block.function.primitive.ObjectIntToIntFunction<? super K>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToIntFunction;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/eclipse/collections/api/block/function/primitive/ObjectIntToIntFunction<-TK;>;)V
    MethodParameters:
          Name  Flags
      function  

  public abstract void removeKey();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;)V
    MethodParameters:
      Name  Flags
      key   

  public abstract void remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  public abstract int removeKeyIfAbsent(K, );
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;I)I
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract int getIfAbsentPut(K, );
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;I)I
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract int getIfAbsentPut(K, org.eclipse.collections.api.block.function.primitive.IntFunction0);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;Lorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
    MethodParameters:
          Name  Flags
      key       
      function  

  public abstract int getIfAbsentPutWithKey(K, org.eclipse.collections.api.block.function.primitive.IntFunction<? super K>);
    descriptor: (Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/primitive/IntFunction;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;Lorg/eclipse/collections/api/block/function/primitive/IntFunction<-TK;>;)I
    MethodParameters:
          Name  Flags
      key       
      function  

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

  public abstract int updateValue(K, int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (Ljava/lang/Object;ILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;ILorg/eclipse/collections/api/block/function/primitive/IntToIntFunction;)I
    MethodParameters:
                      Name  Flags
      key                   
      initialValueIfAbsent  
      function              

  public abstract org.eclipse.collections.api.map.primitive.MutableIntObjectMap<K> flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntObjectMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableIntObjectMap<TK;>;

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> select(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super K>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
           Name  Flags
      predicate  

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> reject(org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate<? super K>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/eclipse/collections/api/block/predicate/primitive/ObjectIntPredicate<-TK;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
           Name  Flags
      predicate  

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

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

  public org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
        start local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
         0: .line 181
            aload 0 /* this */
            aload 1 /* procedure */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectIntMap.forEach:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)V
         1: .line 182
            aload 0 /* this */
            areturn
        end local 1 // org.eclipse.collections.api.block.procedure.primitive.IntProcedure procedure
        end local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
            0    2     1  procedure  Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;
    Signature: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
           Name  Flags
      procedure  

  public abstract <V> org.eclipse.collections.api.collection.MutableCollection<V> collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction<? extends V>);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <V:Ljava/lang/Object;>(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction<+TV;>;)Lorg/eclipse/collections/api/collection/MutableCollection<TV;>;
    MethodParameters:
          Name  Flags
      function  

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> withKeyValue(K, int);
    descriptor: (Ljava/lang/Object;I)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;I)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> withoutKey(K);
    descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
      Name  Flags
      key   

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> withoutAllKeys(java.lang.Iterable<? extends K>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/lang/Iterable<+TK;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
      Name  Flags
      keys  

  public org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> withAllKeyValues(java.lang.Iterable<org.eclipse.collections.api.tuple.primitive.ObjectIntPair<K>>);
    descriptor: (Ljava/lang/Iterable;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
        start local 1 // java.lang.Iterable keyValuePairs
         0: .line 216
            aload 1 /* keyValuePairs */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.eclipse.collections.api.map.primitive.MutableObjectIntMap 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.ObjectIntPair
            astore 2 /* keyValuePair */
        start local 2 // org.eclipse.collections.api.tuple.primitive.ObjectIntPair keyValuePair
         2: .line 218
            aload 0 /* this */
            aload 2 /* keyValuePair */
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectIntMap.putPair:(Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair;)V
        end local 2 // org.eclipse.collections.api.tuple.primitive.ObjectIntPair keyValuePair
         3: .line 216
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 220
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable keyValuePairs
        end local 0 // org.eclipse.collections.api.map.primitive.MutableObjectIntMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
            0    5     1  keyValuePairs  Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;>;
            2    3     2   keyValuePair  Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;
    Signature: (Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/primitive/ObjectIntPair<TK;>;>;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;
    MethodParameters:
               Name  Flags
      keyValuePairs  

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> asUnmodifiable();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;

  public abstract org.eclipse.collections.api.map.primitive.MutableObjectIntMap<K> asSynchronized();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap<TK;>;

  public abstract int addToValue(K, );
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TK;I)I
    MethodParameters:
           Name  Flags
      key        
      toBeAdded  

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

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

  public org.eclipse.collections.api.RichIterable collect(org.eclipse.collections.api.block.function.primitive.IntToObjectFunction);
    descriptor: (Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)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.IntToObjectFunction
            invokeinterface org.eclipse.collections.api.map.primitive.MutableObjectIntMap.collect:(Lorg/eclipse/collections/api/block/function/primitive/IntToObjectFunction;)Lorg/eclipse/collections/api/collection/MutableCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public org.eclipse.collections.api.map.primitive.ObjectIntMap tap(org.eclipse.collections.api.block.procedure.primitive.IntProcedure);
    descriptor: (Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/ObjectIntMap;
    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.MutableObjectIntMap.tap:(Lorg/eclipse/collections/api/block/procedure/primitive/IntProcedure;)Lorg/eclipse/collections/api/map/primitive/MutableObjectIntMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.iterator.IntIterator intIterator();
    descriptor: ()Lorg/eclipse/collections/api/iterator/IntIterator;
    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.MutableObjectIntMap.intIterator:()Lorg/eclipse/collections/api/iterator/MutableIntIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

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

  public org.eclipse.collections.api.map.primitive.IntObjectMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/IntObjectMap;
    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.MutableObjectIntMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableIntObjectMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <K:Ljava/lang/Object;>Ljava/lang/Object;Lorg/eclipse/collections/api/map/primitive/ObjectIntMap<TK;>;
SourceFile: "MutableObjectIntMap.java"