Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleLongMap
-
Packages that use MutableDoubleLongMap 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 MutableDoubleLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleLongMap Modifier and Type Method Description MutableDoubleLongMapMutableDoubleLongMapFactory. empty()<T> MutableDoubleLongMapMutableDoubleLongMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableDoubleLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleLongMapMutableDoubleLongMapFactory. of()Same asMutableDoubleLongMapFactory.empty().default MutableDoubleLongMapMutableDoubleLongMapFactory. of(double key, long value)default MutableDoubleLongMapMutableDoubleLongMapFactory. of(double key1, long value1, double key2, long value2)default MutableDoubleLongMapMutableDoubleLongMapFactory. of(double key1, long value1, double key2, long value2, double key3, long value3)default MutableDoubleLongMapMutableDoubleLongMapFactory. of(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4)MutableDoubleLongMapMutableDoubleLongMapFactory. ofAll(DoubleLongMap map)MutableDoubleLongMapMutableDoubleLongMapFactory. ofInitialCapacity(int capacity)Same asMutableDoubleLongMapFactory.empty().MutableDoubleLongMapMutableDoubleLongMapFactory. with()Same asMutableDoubleLongMapFactory.empty().default MutableDoubleLongMapMutableDoubleLongMapFactory. with(double key, long value)default MutableDoubleLongMapMutableDoubleLongMapFactory. with(double key1, long value1, double key2, long value2)default MutableDoubleLongMapMutableDoubleLongMapFactory. with(double key1, long value1, double key2, long value2, double key3, long value3)default MutableDoubleLongMapMutableDoubleLongMapFactory. with(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4)MutableDoubleLongMapMutableDoubleLongMapFactory. withAll(DoubleLongMap map)MutableDoubleLongMapMutableDoubleLongMapFactory. withInitialCapacity(int capacity)Same asMutableDoubleLongMapFactory.empty(). -
Uses of MutableDoubleLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleLongMap Modifier and Type Method Description MutableDoubleLongMapMutableDoubleLongMap. 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.MutableDoubleLongMapMutableDoubleLongMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleLongMapMutableLongDoubleMap. flipUniqueValues()MutableDoubleLongMapMutableDoubleLongMap. reject(DoubleLongPredicate predicate)MutableDoubleLongMapMutableDoubleLongMap. select(DoubleLongPredicate predicate)default MutableDoubleLongMapMutableDoubleLongMap. withAllKeyValues(Iterable<DoubleLongPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleLongMapMutableDoubleLongMap. withKeyValue(double key, long value)Associates a value with the specified key.MutableDoubleLongMapMutableDoubleLongMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleLongMapMutableDoubleLongMap. withoutKey(double key)Removes the mapping associated with the key, if one exists, from this map.
-