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