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