float |
MutableFloatFloatMap.getIfAbsentPutWithKey(float key,
FloatToFloatFunction function) |
Retrieves the value associated with the key if one exists; if it does not,
associates the result of invoking the value function with the key.
|
float |
MutableByteFloatMap.updateValue(byte key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableCharFloatMap.updateValue(char key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableDoubleFloatMap.updateValue(double key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableFloatFloatMap.updateValue(float key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableIntFloatMap.updateValue(int key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableLongFloatMap.updateValue(long key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableObjectFloatMap.updateValue(K key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|
float |
MutableShortFloatMap.updateValue(short key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
Updates or sets the value associated with the key by applying the function to the
existing value, if one exists, or to the specified initial value if one does not.
|