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