Uses of Interface
org.eclipse.collections.api.map.primitive.MutableByteDoubleMap
Packages that use MutableByteDoubleMap
Package
Description
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 MutableByteDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableByteDoubleMapModifier and TypeMethodDescriptionMutableByteDoubleMapFactory.empty()MutableByteDoubleMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableByteDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteDoubleMapFactory.of()Same asMutableByteDoubleMapFactory.empty().default MutableByteDoubleMapMutableByteDoubleMapFactory.of(byte key, double value) default MutableByteDoubleMapMutableByteDoubleMapFactory.of(byte key1, double value1, byte key2, double value2) default MutableByteDoubleMapMutableByteDoubleMapFactory.of(byte key1, double value1, byte key2, double value2, byte key3, double value3) default MutableByteDoubleMapMutableByteDoubleMapFactory.of(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4) MutableByteDoubleMapFactory.ofAll(ByteDoubleMap map) MutableByteDoubleMapFactory.ofInitialCapacity(int capacity) Same asMutableByteDoubleMapFactory.empty(). but takes in an initial capacityMutableByteDoubleMapFactory.with()Same asMutableByteDoubleMapFactory.empty().default MutableByteDoubleMapMutableByteDoubleMapFactory.with(byte key, double value) default MutableByteDoubleMapMutableByteDoubleMapFactory.with(byte key1, double value1, byte key2, double value2) default MutableByteDoubleMapMutableByteDoubleMapFactory.with(byte key1, double value1, byte key2, double value2, byte key3, double value3) default MutableByteDoubleMapMutableByteDoubleMapFactory.with(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4) MutableByteDoubleMapFactory.withAll(ByteDoubleMap map) MutableByteDoubleMapFactory.withInitialCapacity(int capacity) Same asMutableByteDoubleMapFactory.empty(). but takes in an initial capacity -
Uses of MutableByteDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableByteDoubleMapModifier and TypeMethodDescriptionMutableByteDoubleMap.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.MutableByteDoubleMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleByteMap.flipUniqueValues()MutableByteDoubleMap.reject(ByteDoublePredicate predicate) MutableByteDoubleMap.select(ByteDoublePredicate predicate) default MutableByteDoubleMapMutableByteDoubleMap.withAllKeyValues(Iterable<ByteDoublePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableByteDoubleMap.withKeyValue(byte key, double value) Associates a value with the specified key.MutableByteDoubleMap.withoutAllKeys(ByteIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableByteDoubleMap.withoutKey(byte key) Removes the mapping associated with the key, if one exists, from this map.