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