Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatByteMap
Packages that use MutableFloatByteMap
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 MutableFloatByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatByteMapModifier and TypeMethodDescriptionMutableFloatByteMapFactory.empty()MutableFloatByteMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableFloatByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatByteMapFactory.of()Same asMutableFloatByteMapFactory.empty().default MutableFloatByteMapMutableFloatByteMapFactory.of(float key, byte value) default MutableFloatByteMapMutableFloatByteMapFactory.of(float key1, byte value1, float key2, byte value2) default MutableFloatByteMapMutableFloatByteMapFactory.of(float key1, byte value1, float key2, byte value2, float key3, byte value3) default MutableFloatByteMapMutableFloatByteMapFactory.of(float key1, byte value1, float key2, byte value2, float key3, byte value3, float key4, byte value4) MutableFloatByteMapFactory.ofAll(FloatByteMap map) MutableFloatByteMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatByteMapFactory.empty(). but takes in an initial capacityMutableFloatByteMapFactory.with()Same asMutableFloatByteMapFactory.empty().default MutableFloatByteMapMutableFloatByteMapFactory.with(float key, byte value) default MutableFloatByteMapMutableFloatByteMapFactory.with(float key1, byte value1, float key2, byte value2) default MutableFloatByteMapMutableFloatByteMapFactory.with(float key1, byte value1, float key2, byte value2, float key3, byte value3) default MutableFloatByteMapMutableFloatByteMapFactory.with(float key1, byte value1, float key2, byte value2, float key3, byte value3, float key4, byte value4) MutableFloatByteMapFactory.withAll(FloatByteMap map) MutableFloatByteMapFactory.withInitialCapacity(int capacity) Same asMutableFloatByteMapFactory.empty(). but takes in an initial capacity -
Uses of MutableFloatByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatByteMapModifier and TypeMethodDescriptionMutableFloatByteMap.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.MutableFloatByteMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteFloatMap.flipUniqueValues()MutableFloatByteMap.reject(FloatBytePredicate predicate) MutableFloatByteMap.select(FloatBytePredicate predicate) default MutableFloatByteMapMutableFloatByteMap.withAllKeyValues(Iterable<FloatBytePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatByteMap.withKeyValue(float key, byte value) Associates a value with the specified key.MutableFloatByteMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatByteMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map.