public interface MutableIntDoubleMap extends IntDoubleMap, MutableDoubleValuesMap
| Modifier and Type | Method and Description |
|---|---|
double |
addToValue(int key,
double toBeAdded) |
MutableIntDoubleMap |
asSynchronized() |
MutableIntDoubleMap |
asUnmodifiable() |
MutableDoubleIntMap |
flipUniqueValues()
Return the DoubleIntMap that is obtained by flipping the direction of this map and making the associations
from value to key.
|
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, toStringclear, collect, doubleIterator, reject, selectcontainsValue, forEachValue, tap, valuesallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, sizevoid 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)
MutableDoubleIntMap flipUniqueValues()
IntDoubleMapflipUniqueValues in interface IntDoubleMapMutableIntDoubleMap select(IntDoublePredicate predicate)
select in interface IntDoubleMapMutableIntDoubleMap reject(IntDoublePredicate predicate)
reject in interface IntDoubleMapMutableIntDoubleMap 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–2017. All rights reserved.