DoubleLongMap
, LongIterable
, LongValuesMap
, MutableLongValuesMap
, PrimitiveIterable
DoubleLongHashMap
, SynchronizedDoubleLongMap
, UnmodifiableDoubleLongMap
public interface MutableDoubleLongMap extends DoubleLongMap, MutableLongValuesMap
containsKey, equals, forEachKey, forEachKeyValue, get, getIfAbsent, getOrThrow, hashCode, keySet, keysView, keyValuesView, toImmutable, toString
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedList
containsValue, forEachValue, values
clear, collect, longIterator, reject, select
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size
void put(double key, long value)
void putAll(DoubleLongMap map)
void removeKey(double key)
void remove(double key)
long removeKeyIfAbsent(double key, long value)
long getIfAbsentPut(double key, long value)
long getIfAbsentPut(double key, LongFunction0 function)
long getIfAbsentPutWithKey(double key, DoubleToLongFunction function)
<P> long getIfAbsentPutWith(double key, LongFunction<? super P> function, P parameter)
long updateValue(double key, long initialValueIfAbsent, LongToLongFunction function)
MutableDoubleLongMap select(DoubleLongPredicate predicate)
select
in interface DoubleLongMap
MutableDoubleLongMap reject(DoubleLongPredicate predicate)
reject
in interface DoubleLongMap
MutableDoubleLongMap withKeyValue(double key, long value)
MutableDoubleLongMap withoutKey(double key)
MutableDoubleLongMap withoutAllKeys(DoubleIterable keys)
MutableDoubleLongMap asUnmodifiable()
MutableDoubleLongMap asSynchronized()
long addToValue(double key, long toBeAdded)
Copyright © 2004–2017. All rights reserved.