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