Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongBooleanMap
Packages that use MutableLongBooleanMap
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 MutableLongBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongBooleanMapModifier and TypeMethodDescriptionMutableLongBooleanMapFactory.empty()MutableLongBooleanMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableLongBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongBooleanMapFactory.of()Same asMutableLongBooleanMapFactory.empty().default MutableLongBooleanMapMutableLongBooleanMapFactory.of(long key, boolean value) default MutableLongBooleanMapMutableLongBooleanMapFactory.of(long key1, boolean value1, long key2, boolean value2) default MutableLongBooleanMapMutableLongBooleanMapFactory.of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3) default MutableLongBooleanMapMutableLongBooleanMapFactory.of(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4) MutableLongBooleanMapFactory.ofAll(LongBooleanMap map) MutableLongBooleanMapFactory.ofInitialCapacity(int capacity) Same asMutableLongBooleanMapFactory.empty(). but takes in an initial capacityMutableLongBooleanMapFactory.with()Same asMutableLongBooleanMapFactory.empty().default MutableLongBooleanMapMutableLongBooleanMapFactory.with(long key, boolean value) default MutableLongBooleanMapMutableLongBooleanMapFactory.with(long key1, boolean value1, long key2, boolean value2) default MutableLongBooleanMapMutableLongBooleanMapFactory.with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3) default MutableLongBooleanMapMutableLongBooleanMapFactory.with(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4) MutableLongBooleanMapFactory.withAll(LongBooleanMap map) MutableLongBooleanMapFactory.withInitialCapacity(int capacity) Same asMutableLongBooleanMapFactory.empty(). but takes in an initial capacity -
Uses of MutableLongBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongBooleanMapModifier and TypeMethodDescriptionMutableLongBooleanMap.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.MutableLongBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongBooleanMap.reject(LongBooleanPredicate predicate) MutableLongBooleanMap.select(LongBooleanPredicate predicate) default MutableLongBooleanMapMutableLongBooleanMap.withAllKeyValues(Iterable<LongBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableLongBooleanMap.withKeyValue(long key, boolean value) Associates a value with the specified key.MutableLongBooleanMap.withoutAllKeys(LongIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableLongBooleanMap.withoutKey(long key) Removes the mapping associated with the key, if one exists, from this map.