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