Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntBooleanMap
Packages that use MutableIntBooleanMap
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 MutableIntBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntBooleanMapModifier and TypeMethodDescriptionMutableIntBooleanMapFactory.empty()MutableIntBooleanMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntBooleanMapFactory.of()Same asMutableIntBooleanMapFactory.empty().default MutableIntBooleanMapMutableIntBooleanMapFactory.of(int key, boolean value) default MutableIntBooleanMapMutableIntBooleanMapFactory.of(int key1, boolean value1, int key2, boolean value2) default MutableIntBooleanMapMutableIntBooleanMapFactory.of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) default MutableIntBooleanMapMutableIntBooleanMapFactory.of(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4) MutableIntBooleanMapFactory.ofAll(IntBooleanMap map) MutableIntBooleanMapFactory.ofInitialCapacity(int capacity) Same asMutableIntBooleanMapFactory.empty(). but takes in an initial capacityMutableIntBooleanMapFactory.with()Same asMutableIntBooleanMapFactory.empty().default MutableIntBooleanMapMutableIntBooleanMapFactory.with(int key, boolean value) default MutableIntBooleanMapMutableIntBooleanMapFactory.with(int key1, boolean value1, int key2, boolean value2) default MutableIntBooleanMapMutableIntBooleanMapFactory.with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3) default MutableIntBooleanMapMutableIntBooleanMapFactory.with(int key1, boolean value1, int key2, boolean value2, int key3, boolean value3, int key4, boolean value4) MutableIntBooleanMapFactory.withAll(IntBooleanMap map) MutableIntBooleanMapFactory.withInitialCapacity(int capacity) Same asMutableIntBooleanMapFactory.empty(). but takes in an initial capacity -
Uses of MutableIntBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntBooleanMapModifier and TypeMethodDescriptionMutableIntBooleanMap.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.MutableIntBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntBooleanMap.reject(IntBooleanPredicate predicate) MutableIntBooleanMap.select(IntBooleanPredicate predicate) default MutableIntBooleanMapMutableIntBooleanMap.withAllKeyValues(Iterable<IntBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntBooleanMap.withKeyValue(int key, boolean value) Associates a value with the specified key.MutableIntBooleanMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntBooleanMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map.