public interface MutableFloatLongMap extends FloatLongMap, MutableLongValuesMap
Modifier and Type | Method and Description |
---|---|
long |
addToValue(float key,
long toBeAdded) |
MutableFloatLongMap |
asSynchronized() |
MutableFloatLongMap |
asUnmodifiable() |
long |
getIfAbsentPut(float key,
long value) |
long |
getIfAbsentPut(float key,
LongFunction0 function) |
<P> long |
getIfAbsentPutWith(float key,
LongFunction<? super P> function,
P parameter) |
long |
getIfAbsentPutWithKey(float key,
FloatToLongFunction function) |
void |
put(float key,
long value) |
void |
putAll(FloatLongMap map) |
MutableFloatLongMap |
reject(FloatLongPredicate predicate) |
void |
remove(float key) |
void |
removeKey(float key) |
long |
removeKeyIfAbsent(float key,
long value) |
MutableFloatLongMap |
select(FloatLongPredicate predicate) |
long |
updateValue(float key,
long initialValueIfAbsent,
LongToLongFunction function) |
MutableFloatLongMap |
withKeyValue(float key,
long value) |
MutableFloatLongMap |
withoutAllKeys(FloatIterable keys) |
MutableFloatLongMap |
withoutKey(float key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, longIterator, 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(float key, long value)
void putAll(FloatLongMap map)
void removeKey(float key)
void remove(float key)
long removeKeyIfAbsent(float key, long value)
long getIfAbsentPut(float key, long value)
long getIfAbsentPut(float key, LongFunction0 function)
long getIfAbsentPutWithKey(float key, FloatToLongFunction function)
<P> long getIfAbsentPutWith(float key, LongFunction<? super P> function, P parameter)
long updateValue(float key, long initialValueIfAbsent, LongToLongFunction function)
MutableFloatLongMap select(FloatLongPredicate predicate)
select
in interface FloatLongMap
MutableFloatLongMap reject(FloatLongPredicate predicate)
reject
in interface FloatLongMap
MutableFloatLongMap withKeyValue(float key, long value)
MutableFloatLongMap withoutKey(float key)
MutableFloatLongMap withoutAllKeys(FloatIterable keys)
MutableFloatLongMap asUnmodifiable()
MutableFloatLongMap asSynchronized()
long addToValue(float key, long toBeAdded)
Copyright © 2004–2016. All rights reserved.