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