public interface MutableIntLongMap extends IntLongMap, MutableLongValuesMap
Modifier and Type | Method and Description |
---|---|
long |
addToValue(int key,
long toBeAdded) |
MutableIntLongMap |
asSynchronized() |
MutableIntLongMap |
asUnmodifiable() |
long |
getIfAbsentPut(int key,
long value) |
long |
getIfAbsentPut(int key,
LongFunction0 function) |
<P> long |
getIfAbsentPutWith(int key,
LongFunction<? super P> function,
P parameter) |
long |
getIfAbsentPutWithKey(int key,
IntToLongFunction function) |
void |
put(int key,
long value) |
void |
putAll(IntLongMap map) |
MutableIntLongMap |
reject(IntLongPredicate predicate) |
void |
remove(int key) |
void |
removeKey(int key) |
long |
removeKeyIfAbsent(int key,
long value) |
MutableIntLongMap |
select(IntLongPredicate predicate) |
long |
updateValue(int key,
long initialValueIfAbsent,
LongToLongFunction function) |
MutableIntLongMap |
withKeyValue(int key,
long value) |
MutableIntLongMap |
withoutAllKeys(IntIterable keys) |
MutableIntLongMap |
withoutKey(int key) |
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
clear, collect, longIterator, 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, long value)
void putAll(IntLongMap map)
void removeKey(int key)
void remove(int key)
long removeKeyIfAbsent(int key, long value)
long getIfAbsentPut(int key, long value)
long getIfAbsentPut(int key, LongFunction0 function)
long getIfAbsentPutWithKey(int key, IntToLongFunction function)
<P> long getIfAbsentPutWith(int key, LongFunction<? super P> function, P parameter)
long updateValue(int key, long initialValueIfAbsent, LongToLongFunction function)
MutableIntLongMap select(IntLongPredicate predicate)
select
in interface IntLongMap
MutableIntLongMap reject(IntLongPredicate predicate)
reject
in interface IntLongMap
MutableIntLongMap withKeyValue(int key, long value)
MutableIntLongMap withoutKey(int key)
MutableIntLongMap withoutAllKeys(IntIterable keys)
MutableIntLongMap asUnmodifiable()
MutableIntLongMap asSynchronized()
long addToValue(int key, long toBeAdded)
Copyright © 2004–2016. All rights reserved.