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