public interface org.eclipse.collections.api.map.primitive.MutableDoubleIntMap extends org.eclipse.collections.api.map.primitive.DoubleIntMap, 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.MutableDoubleIntMap
  super_class: java.lang.Object
{
  public abstract void put(double, int);
    descriptor: (DI)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

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

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

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

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

  public abstract int removeKeyIfAbsent(double, int);
    descriptor: (DI)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract int getIfAbsentPut(double, int);
    descriptor: (DI)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      key    
      value  

  public abstract int getIfAbsentPut(double, org.eclipse.collections.api.block.function.primitive.IntFunction0);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/IntFunction0;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      key       
      function  

  public abstract int getIfAbsentPutWithKey(double, org.eclipse.collections.api.block.function.primitive.DoubleToIntFunction);
    descriptor: (DLorg/eclipse/collections/api/block/function/primitive/DoubleToIntFunction;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      key       
      function  

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

  public abstract int updateValue(double, int, org.eclipse.collections.api.block.function.primitive.IntToIntFunction);
    descriptor: (DILorg/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.MutableIntDoubleMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

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

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

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

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

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

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

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

  public abstract int addToValue(double, int);
    descriptor: (DI)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
           Name  Flags
      key        
      toBeAdded  

  public org.eclipse.collections.api.map.primitive.DoubleIntMap select(org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
    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.MutableDoubleIntMap.select:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.DoubleIntMap reject(org.eclipse.collections.api.block.predicate.primitive.DoubleIntPredicate);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/api/map/primitive/DoubleIntMap;
    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.MutableDoubleIntMap.reject:(Lorg/eclipse/collections/api/block/predicate/primitive/DoubleIntPredicate;)Lorg/eclipse/collections/api/map/primitive/MutableDoubleIntMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.eclipse.collections.api.map.primitive.IntDoubleMap flipUniqueValues();
    descriptor: ()Lorg/eclipse/collections/api/map/primitive/IntDoubleMap;
    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.MutableDoubleIntMap.flipUniqueValues:()Lorg/eclipse/collections/api/map/primitive/MutableIntDoubleMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "MutableDoubleIntMap.java"