Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongIntMap
| 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.
|
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
-
Uses of MutableLongIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMapMutableLongIntMapFactory. empty()<T> MutableLongIntMapMutableLongIntMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongIntMapMutableLongIntMapFactory. of()Same asMutableLongIntMapFactory.empty().MutableLongIntMapMutableLongIntMapFactory. ofAll(LongIntMap map)MutableLongIntMapMutableLongIntMapFactory. ofInitialCapacity(int capacity)Same asMutableLongIntMapFactory.empty().MutableLongIntMapMutableLongIntMapFactory. with()Same asMutableLongIntMapFactory.empty().MutableLongIntMapMutableLongIntMapFactory. withAll(LongIntMap map)MutableLongIntMapMutableLongIntMapFactory. withInitialCapacity(int capacity)Same asMutableLongIntMapFactory.empty(). -
Uses of MutableLongIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMapMutableLongIntMap. 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.MutableLongIntMapMutableLongIntMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongIntMapMutableIntLongMap. flipUniqueValues()MutableLongIntMapMutableLongIntMap. reject(LongIntPredicate predicate)MutableLongIntMapMutableLongIntMap. select(LongIntPredicate predicate)default MutableLongIntMapMutableLongIntMap. withAllKeyValues(Iterable<LongIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableLongIntMapMutableLongIntMap. withKeyValue(long key, int value)Associates a value with the specified key.MutableLongIntMapMutableLongIntMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongIntMapMutableLongIntMap. withoutKey(long key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongIntMap Modifier and Type Class Description classLongIntHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedLongIntMapA synchronized view of aMutableLongIntMap.classUnmodifiableLongIntMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongIntMap Modifier and Type Method Description MutableLongIntMapLongIntHashMap. asSynchronized()MutableLongIntMapSynchronizedLongIntMap. asSynchronized()MutableLongIntMapUnmodifiableLongIntMap. asSynchronized()MutableLongIntMapLongIntHashMap. asUnmodifiable()MutableLongIntMapSynchronizedLongIntMap. asUnmodifiable()MutableLongIntMapUnmodifiableLongIntMap. asUnmodifiable()MutableLongIntMapMutableLongIntMapFactoryImpl. empty()MutableLongIntMapIntLongHashMap. flipUniqueValues()MutableLongIntMapSynchronizedIntLongMap. flipUniqueValues()MutableLongIntMapUnmodifiableIntLongMap. flipUniqueValues()<T> MutableLongIntMapMutableLongIntMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)MutableLongIntMapMutableLongIntMapFactoryImpl. of()MutableLongIntMapMutableLongIntMapFactoryImpl. ofAll(LongIntMap map)MutableLongIntMapMutableLongIntMapFactoryImpl. ofInitialCapacity(int capacity)MutableLongIntMapSynchronizedLongIntMap. reject(LongIntPredicate predicate)MutableLongIntMapUnmodifiableLongIntMap. reject(LongIntPredicate predicate)MutableLongIntMapSynchronizedLongIntMap. select(LongIntPredicate predicate)MutableLongIntMapUnmodifiableLongIntMap. select(LongIntPredicate predicate)MutableLongIntMapMutableLongIntMapFactoryImpl. with()MutableLongIntMapMutableLongIntMapFactoryImpl. withAll(LongIntMap map)MutableLongIntMapMutableLongIntMapFactoryImpl. withInitialCapacity(int capacity)MutableLongIntMapSynchronizedLongIntMap. withKeyValue(long key, int value)MutableLongIntMapUnmodifiableLongIntMap. withKeyValue(long key, int value)MutableLongIntMapSynchronizedLongIntMap. withoutAllKeys(LongIterable keys)MutableLongIntMapUnmodifiableLongIntMap. withoutAllKeys(LongIterable keys)MutableLongIntMapSynchronizedLongIntMap. withoutKey(long key)MutableLongIntMapUnmodifiableLongIntMap. withoutKey(long key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongIntMap Constructor Description SynchronizedLongIntMap(MutableLongIntMap map)SynchronizedLongIntMap(MutableLongIntMap map, Object newLock)UnmodifiableLongIntMap(MutableLongIntMap map)