public interface MutableIntFloatMap extends IntFloatMap, MutableFloatValuesMap
Modifier and Type | Method and Description |
---|---|
float |
addToValue(int key,
float toBeAdded) |
MutableIntFloatMap |
asSynchronized() |
MutableIntFloatMap |
asUnmodifiable() |
float |
getIfAbsentPut(int key,
float value) |
float |
getIfAbsentPut(int key,
FloatFunction0 function) |
<P> float |
getIfAbsentPutWith(int key,
FloatFunction<? super P> function,
P parameter) |
float |
getIfAbsentPutWithKey(int key,
IntToFloatFunction function) |
void |
put(int key,
float value) |
void |
putAll(IntFloatMap map) |
MutableIntFloatMap |
reject(IntFloatPredicate predicate) |
void |
remove(int key) |
void |
removeKey(int key) |
float |
removeKeyIfAbsent(int key,
float value) |
MutableIntFloatMap |
select(IntFloatPredicate predicate) |
float |
updateValue(int key,
float initialValueIfAbsent,
FloatToFloatFunction function) |
MutableIntFloatMap |
withKeyValue(int key,
float value) |
MutableIntFloatMap |
withoutAllKeys(IntIterable keys) |
MutableIntFloatMap |
withoutKey(int key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, floatIterator, reject, select
containsValue, forEachValue, values
allSatisfy, anySatisfy, asLazy, average, contains, containsAll, containsAll, count, detectIfNone, each, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(int key, float value)
void putAll(IntFloatMap map)
void removeKey(int key)
void remove(int key)
float removeKeyIfAbsent(int key, float value)
float getIfAbsentPut(int key, float value)
float getIfAbsentPut(int key, FloatFunction0 function)
float getIfAbsentPutWithKey(int key, IntToFloatFunction function)
<P> float getIfAbsentPutWith(int key, FloatFunction<? super P> function, P parameter)
float updateValue(int key, float initialValueIfAbsent, FloatToFloatFunction function)
MutableIntFloatMap select(IntFloatPredicate predicate)
select
in interface IntFloatMap
MutableIntFloatMap reject(IntFloatPredicate predicate)
reject
in interface IntFloatMap
MutableIntFloatMap withKeyValue(int key, float value)
MutableIntFloatMap withoutKey(int key)
MutableIntFloatMap withoutAllKeys(IntIterable keys)
MutableIntFloatMap asUnmodifiable()
MutableIntFloatMap asSynchronized()
float addToValue(int key, float toBeAdded)
Copyright © 2004–2016. All rights reserved.