public interface MutableCharDoubleMap extends CharDoubleMap, MutableDoubleValuesMap
Modifier and Type | Method and Description |
---|---|
double |
addToValue(char key,
double toBeAdded) |
MutableCharDoubleMap |
asSynchronized() |
MutableCharDoubleMap |
asUnmodifiable() |
double |
getIfAbsentPut(char key,
double value) |
double |
getIfAbsentPut(char key,
DoubleFunction0 function) |
<P> double |
getIfAbsentPutWith(char key,
DoubleFunction<? super P> function,
P parameter) |
double |
getIfAbsentPutWithKey(char key,
CharToDoubleFunction function) |
void |
put(char key,
double value) |
void |
putAll(CharDoubleMap map) |
MutableCharDoubleMap |
reject(CharDoublePredicate predicate) |
void |
remove(char key) |
void |
removeKey(char key) |
double |
removeKeyIfAbsent(char key,
double value) |
MutableCharDoubleMap |
select(CharDoublePredicate predicate) |
double |
updateValue(char key,
double initialValueIfAbsent,
DoubleToDoubleFunction function) |
MutableCharDoubleMap |
withKeyValue(char key,
double value) |
MutableCharDoubleMap |
withoutAllKeys(CharIterable keys) |
MutableCharDoubleMap |
withoutKey(char 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(char key, double value)
void putAll(CharDoubleMap map)
void removeKey(char key)
void remove(char key)
double removeKeyIfAbsent(char key, double value)
double getIfAbsentPut(char key, double value)
double getIfAbsentPut(char key, DoubleFunction0 function)
double getIfAbsentPutWithKey(char key, CharToDoubleFunction function)
<P> double getIfAbsentPutWith(char key, DoubleFunction<? super P> function, P parameter)
double updateValue(char key, double initialValueIfAbsent, DoubleToDoubleFunction function)
MutableCharDoubleMap select(CharDoublePredicate predicate)
select
in interface CharDoubleMap
MutableCharDoubleMap reject(CharDoublePredicate predicate)
reject
in interface CharDoubleMap
MutableCharDoubleMap withKeyValue(char key, double value)
MutableCharDoubleMap withoutKey(char key)
MutableCharDoubleMap withoutAllKeys(CharIterable keys)
MutableCharDoubleMap asUnmodifiable()
MutableCharDoubleMap asSynchronized()
double addToValue(char key, double toBeAdded)
Copyright © 2004–2016. All rights reserved.