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