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