Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatLongMap
Packages that use MutableFloatLongMap
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 MutableFloatLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatLongMapModifier and TypeMethodDescriptionMutableFloatLongMapFactory.empty()MutableFloatLongMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableFloatLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatLongMapFactory.of()Same asMutableFloatLongMapFactory.empty().default MutableFloatLongMapMutableFloatLongMapFactory.of(float key, long value) default MutableFloatLongMapMutableFloatLongMapFactory.of(float key1, long value1, float key2, long value2) default MutableFloatLongMapMutableFloatLongMapFactory.of(float key1, long value1, float key2, long value2, float key3, long value3) default MutableFloatLongMapMutableFloatLongMapFactory.of(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4) MutableFloatLongMapFactory.ofAll(FloatLongMap map) MutableFloatLongMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatLongMapFactory.empty(). but takes in an initial capacityMutableFloatLongMapFactory.with()Same asMutableFloatLongMapFactory.empty().default MutableFloatLongMapMutableFloatLongMapFactory.with(float key, long value) default MutableFloatLongMapMutableFloatLongMapFactory.with(float key1, long value1, float key2, long value2) default MutableFloatLongMapMutableFloatLongMapFactory.with(float key1, long value1, float key2, long value2, float key3, long value3) default MutableFloatLongMapMutableFloatLongMapFactory.with(float key1, long value1, float key2, long value2, float key3, long value3, float key4, long value4) MutableFloatLongMapFactory.withAll(FloatLongMap map) MutableFloatLongMapFactory.withInitialCapacity(int capacity) Same asMutableFloatLongMapFactory.empty(). but takes in an initial capacity -
Uses of MutableFloatLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatLongMapModifier and TypeMethodDescriptionMutableFloatLongMap.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.MutableFloatLongMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongFloatMap.flipUniqueValues()MutableFloatLongMap.reject(FloatLongPredicate predicate) MutableFloatLongMap.select(FloatLongPredicate predicate) default MutableFloatLongMapMutableFloatLongMap.withAllKeyValues(Iterable<FloatLongPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatLongMap.withKeyValue(float key, long value) Associates a value with the specified key.MutableFloatLongMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatLongMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map.