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