public interface MutableDoubleIntMap extends DoubleIntMap, MutableIntValuesMap
Modifier and Type | Method and Description |
---|---|
int |
addToValue(double key,
int toBeAdded) |
MutableDoubleIntMap |
asSynchronized() |
MutableDoubleIntMap |
asUnmodifiable() |
int |
getIfAbsentPut(double key,
int value) |
int |
getIfAbsentPut(double key,
IntFunction0 function) |
<P> int |
getIfAbsentPutWith(double key,
IntFunction<? super P> function,
P parameter) |
int |
getIfAbsentPutWithKey(double key,
DoubleToIntFunction function) |
void |
put(double key,
int value) |
void |
putAll(DoubleIntMap map) |
MutableDoubleIntMap |
reject(DoubleIntPredicate predicate) |
void |
remove(double key) |
void |
removeKey(double key) |
int |
removeKeyIfAbsent(double key,
int value) |
MutableDoubleIntMap |
select(DoubleIntPredicate predicate) |
int |
updateValue(double key,
int initialValueIfAbsent,
IntToIntFunction function) |
MutableDoubleIntMap |
withKeyValue(double key,
int value) |
MutableDoubleIntMap |
withoutAllKeys(DoubleIterable keys) |
MutableDoubleIntMap |
withoutKey(double key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, intIterator, 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(double key, int value)
void putAll(DoubleIntMap map)
void removeKey(double key)
void remove(double key)
int removeKeyIfAbsent(double key, int value)
int getIfAbsentPut(double key, int value)
int getIfAbsentPut(double key, IntFunction0 function)
int getIfAbsentPutWithKey(double key, DoubleToIntFunction function)
<P> int getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)
int updateValue(double key, int initialValueIfAbsent, IntToIntFunction function)
MutableDoubleIntMap select(DoubleIntPredicate predicate)
select
in interface DoubleIntMap
MutableDoubleIntMap reject(DoubleIntPredicate predicate)
reject
in interface DoubleIntMap
MutableDoubleIntMap withKeyValue(double key, int value)
MutableDoubleIntMap withoutKey(double key)
MutableDoubleIntMap withoutAllKeys(DoubleIterable keys)
MutableDoubleIntMap asUnmodifiable()
MutableDoubleIntMap asSynchronized()
int addToValue(double key, int toBeAdded)
Copyright © 2004–2016. All rights reserved.