public interface MutableLongDoubleMap extends LongDoubleMap, MutableDoubleValuesMap
Modifier and Type | Method and Description |
---|---|
double |
addToValue(long key,
double toBeAdded) |
MutableLongDoubleMap |
asSynchronized() |
MutableLongDoubleMap |
asUnmodifiable() |
double |
getIfAbsentPut(long key,
double value) |
double |
getIfAbsentPut(long key,
DoubleFunction0 function) |
<P> double |
getIfAbsentPutWith(long key,
DoubleFunction<? super P> function,
P parameter) |
double |
getIfAbsentPutWithKey(long key,
LongToDoubleFunction function) |
void |
put(long key,
double value) |
void |
putAll(LongDoubleMap map) |
MutableLongDoubleMap |
reject(LongDoublePredicate predicate) |
void |
remove(long key) |
void |
removeKey(long key) |
double |
removeKeyIfAbsent(long key,
double value) |
MutableLongDoubleMap |
select(LongDoublePredicate predicate) |
double |
updateValue(long key,
double initialValueIfAbsent,
DoubleToDoubleFunction function) |
MutableLongDoubleMap |
withKeyValue(long key,
double value) |
MutableLongDoubleMap |
withoutAllKeys(LongIterable keys) |
MutableLongDoubleMap |
withoutKey(long key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, doubleIterator, 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(long key, double value)
void putAll(LongDoubleMap map)
void removeKey(long key)
void remove(long key)
double removeKeyIfAbsent(long key, double value)
double getIfAbsentPut(long key, double value)
double getIfAbsentPut(long key, DoubleFunction0 function)
double getIfAbsentPutWithKey(long key, LongToDoubleFunction function)
<P> double getIfAbsentPutWith(long key, DoubleFunction<? super P> function, P parameter)
double updateValue(long key, double initialValueIfAbsent, DoubleToDoubleFunction function)
MutableLongDoubleMap select(LongDoublePredicate predicate)
select
in interface LongDoubleMap
MutableLongDoubleMap reject(LongDoublePredicate predicate)
reject
in interface LongDoubleMap
MutableLongDoubleMap withKeyValue(long key, double value)
MutableLongDoubleMap withoutKey(long key)
MutableLongDoubleMap withoutAllKeys(LongIterable keys)
MutableLongDoubleMap asUnmodifiable()
MutableLongDoubleMap asSynchronized()
double addToValue(long key, double toBeAdded)
Copyright © 2004–2016. All rights reserved.