Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortFloatMap
Packages that use MutableShortFloatMap
Package
Description
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 MutableShortFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortFloatMapModifier and TypeMethodDescriptionMutableShortFloatMapFactory.empty()MutableShortFloatMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableShortFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableShortFloatMapFactory.of()Same asMutableShortFloatMapFactory.empty().default MutableShortFloatMapMutableShortFloatMapFactory.of(short key, float value) default MutableShortFloatMapMutableShortFloatMapFactory.of(short key1, float value1, short key2, float value2) default MutableShortFloatMapMutableShortFloatMapFactory.of(short key1, float value1, short key2, float value2, short key3, float value3) default MutableShortFloatMapMutableShortFloatMapFactory.of(short key1, float value1, short key2, float value2, short key3, float value3, short key4, float value4) MutableShortFloatMapFactory.ofAll(ShortFloatMap map) MutableShortFloatMapFactory.ofInitialCapacity(int capacity) Same asMutableShortFloatMapFactory.empty(). but takes in an initial capacityMutableShortFloatMapFactory.with()Same asMutableShortFloatMapFactory.empty().default MutableShortFloatMapMutableShortFloatMapFactory.with(short key, float value) default MutableShortFloatMapMutableShortFloatMapFactory.with(short key1, float value1, short key2, float value2) default MutableShortFloatMapMutableShortFloatMapFactory.with(short key1, float value1, short key2, float value2, short key3, float value3) default MutableShortFloatMapMutableShortFloatMapFactory.with(short key1, float value1, short key2, float value2, short key3, float value3, short key4, float value4) MutableShortFloatMapFactory.withAll(ShortFloatMap map) MutableShortFloatMapFactory.withInitialCapacity(int capacity) Same asMutableShortFloatMapFactory.empty(). but takes in an initial capacity -
Uses of MutableShortFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortFloatMapModifier and TypeMethodDescriptionMutableShortFloatMap.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.MutableShortFloatMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatShortMap.flipUniqueValues()MutableShortFloatMap.reject(ShortFloatPredicate predicate) MutableShortFloatMap.select(ShortFloatPredicate predicate) default MutableShortFloatMapMutableShortFloatMap.withAllKeyValues(Iterable<ShortFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortFloatMap.withKeyValue(short key, float value) Associates a value with the specified key.MutableShortFloatMap.withoutAllKeys(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortFloatMap.withoutKey(short key) Removes the mapping associated with the key, if one exists, from this map.