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