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