Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntByteMap
Packages that use MutableIntByteMap
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 MutableIntByteMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntByteMapModifier and TypeMethodDescriptionMutableIntByteMapFactory.empty()MutableIntByteMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapFactory.of()Same asMutableIntByteMapFactory.empty().default MutableIntByteMapMutableIntByteMapFactory.of(int key, byte value) default MutableIntByteMapMutableIntByteMapFactory.of(int key1, byte value1, int key2, byte value2) default MutableIntByteMapMutableIntByteMapFactory.of(int key1, byte value1, int key2, byte value2, int key3, byte value3) default MutableIntByteMapMutableIntByteMapFactory.of(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4) MutableIntByteMapFactory.ofAll(IntByteMap map) MutableIntByteMapFactory.ofInitialCapacity(int capacity) Same asMutableIntByteMapFactory.empty(). but takes in an initial capacityMutableIntByteMapFactory.with()Same asMutableIntByteMapFactory.empty().default MutableIntByteMapMutableIntByteMapFactory.with(int key, byte value) default MutableIntByteMapMutableIntByteMapFactory.with(int key1, byte value1, int key2, byte value2) default MutableIntByteMapMutableIntByteMapFactory.with(int key1, byte value1, int key2, byte value2, int key3, byte value3) default MutableIntByteMapMutableIntByteMapFactory.with(int key1, byte value1, int key2, byte value2, int key3, byte value3, int key4, byte value4) MutableIntByteMapFactory.withAll(IntByteMap map) MutableIntByteMapFactory.withInitialCapacity(int capacity) Same asMutableIntByteMapFactory.empty(). but takes in an initial capacity -
Uses of MutableIntByteMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntByteMapModifier and TypeMethodDescriptionMutableIntByteMap.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.MutableIntByteMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableByteIntMap.flipUniqueValues()MutableIntByteMap.reject(IntBytePredicate predicate) MutableIntByteMap.select(IntBytePredicate predicate) default MutableIntByteMapMutableIntByteMap.withAllKeyValues(Iterable<IntBytePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntByteMap.withKeyValue(int key, byte value) Associates a value with the specified key.MutableIntByteMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntByteMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map.