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