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