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