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