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