Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongDoubleMap
-
Packages that use MutableLongDoubleMap Package Description org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants. -
-
Uses of MutableLongDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMapMutableLongDoubleMapFactory. empty()<T> MutableLongDoubleMapMutableLongDoubleMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapMutableLongDoubleMapFactory. of()Same asMutableLongDoubleMapFactory.empty().default MutableLongDoubleMapMutableLongDoubleMapFactory. of(long key, double value)default MutableLongDoubleMapMutableLongDoubleMapFactory. of(long key1, double value1, long key2, double value2)default MutableLongDoubleMapMutableLongDoubleMapFactory. of(long key1, double value1, long key2, double value2, long key3, double value3)default MutableLongDoubleMapMutableLongDoubleMapFactory. of(long key1, double value1, long key2, double value2, long key3, double value3, long key4, double value4)MutableLongDoubleMapMutableLongDoubleMapFactory. ofAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactory. ofInitialCapacity(int capacity)Same asMutableLongDoubleMapFactory.empty().MutableLongDoubleMapMutableLongDoubleMapFactory. with()Same asMutableLongDoubleMapFactory.empty().default MutableLongDoubleMapMutableLongDoubleMapFactory. with(long key, double value)default MutableLongDoubleMapMutableLongDoubleMapFactory. with(long key1, double value1, long key2, double value2)default MutableLongDoubleMapMutableLongDoubleMapFactory. with(long key1, double value1, long key2, double value2, long key3, double value3)default MutableLongDoubleMapMutableLongDoubleMapFactory. with(long key1, double value1, long key2, double value2, long key3, double value3, long key4, double value4)MutableLongDoubleMapMutableLongDoubleMapFactory. withAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactory. withInitialCapacity(int capacity)Same asMutableLongDoubleMapFactory.empty(). -
Uses of MutableLongDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMapMutableLongDoubleMap. asSynchronized()Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableLongDoubleMapMutableLongDoubleMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongDoubleMapMutableDoubleLongMap. flipUniqueValues()MutableLongDoubleMapMutableLongDoubleMap. reject(LongDoublePredicate predicate)MutableLongDoubleMapMutableLongDoubleMap. select(LongDoublePredicate predicate)default MutableLongDoubleMapMutableLongDoubleMap. withAllKeyValues(Iterable<LongDoublePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableLongDoubleMapMutableLongDoubleMap. withKeyValue(long key, double value)Associates a value with the specified key.MutableLongDoubleMapMutableLongDoubleMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMapMutableLongDoubleMap. withoutKey(long key)Removes the mapping associated with the key, if one exists, from this map.
-