Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatIntMap
-
Packages that use MutableFloatIntMap 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 MutableFloatIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatIntMap Modifier and Type Method Description MutableFloatIntMapMutableFloatIntMapFactory. empty()<T> MutableFloatIntMapMutableFloatIntMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatIntMapMutableFloatIntMapFactory. of()Same asMutableFloatIntMapFactory.empty().default MutableFloatIntMapMutableFloatIntMapFactory. of(float key, int value)default MutableFloatIntMapMutableFloatIntMapFactory. of(float key1, int value1, float key2, int value2)default MutableFloatIntMapMutableFloatIntMapFactory. of(float key1, int value1, float key2, int value2, float key3, int value3)default MutableFloatIntMapMutableFloatIntMapFactory. of(float key1, int value1, float key2, int value2, float key3, int value3, float key4, int value4)MutableFloatIntMapMutableFloatIntMapFactory. ofAll(FloatIntMap map)MutableFloatIntMapMutableFloatIntMapFactory. ofInitialCapacity(int capacity)Same asMutableFloatIntMapFactory.empty().MutableFloatIntMapMutableFloatIntMapFactory. with()Same asMutableFloatIntMapFactory.empty().default MutableFloatIntMapMutableFloatIntMapFactory. with(float key, int value)default MutableFloatIntMapMutableFloatIntMapFactory. with(float key1, int value1, float key2, int value2)default MutableFloatIntMapMutableFloatIntMapFactory. with(float key1, int value1, float key2, int value2, float key3, int value3)default MutableFloatIntMapMutableFloatIntMapFactory. with(float key1, int value1, float key2, int value2, float key3, int value3, float key4, int value4)MutableFloatIntMapMutableFloatIntMapFactory. withAll(FloatIntMap map)MutableFloatIntMapMutableFloatIntMapFactory. withInitialCapacity(int capacity)Same asMutableFloatIntMapFactory.empty(). -
Uses of MutableFloatIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatIntMap Modifier and Type Method Description MutableFloatIntMapMutableFloatIntMap. 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.MutableFloatIntMapMutableFloatIntMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatIntMapMutableIntFloatMap. flipUniqueValues()MutableFloatIntMapMutableFloatIntMap. reject(FloatIntPredicate predicate)MutableFloatIntMapMutableFloatIntMap. select(FloatIntPredicate predicate)default MutableFloatIntMapMutableFloatIntMap. withAllKeyValues(Iterable<FloatIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableFloatIntMapMutableFloatIntMap. withKeyValue(float key, int value)Associates a value with the specified key.MutableFloatIntMapMutableFloatIntMap. withoutAllKeys(FloatIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatIntMapMutableFloatIntMap. withoutKey(float key)Removes the mapping associated with the key, if one exists, from this map.
-