Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntLongMap
| 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 MutableIntLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntLongMap Modifier and Type Method Description MutableIntLongMapMutableIntLongMapFactory. empty()<T> MutableIntLongMapMutableIntLongMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntLongMapMutableIntLongMapFactory. of()Same asMutableIntLongMapFactory.empty().MutableIntLongMapMutableIntLongMapFactory. ofAll(IntLongMap map)MutableIntLongMapMutableIntLongMapFactory. ofInitialCapacity(int capacity)Same asMutableIntLongMapFactory.empty().MutableIntLongMapMutableIntLongMapFactory. with()Same asMutableIntLongMapFactory.empty().MutableIntLongMapMutableIntLongMapFactory. withAll(IntLongMap map)MutableIntLongMapMutableIntLongMapFactory. withInitialCapacity(int capacity)Same asMutableIntLongMapFactory.empty(). -
Uses of MutableIntLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntLongMap Modifier and Type Method Description MutableIntLongMapMutableIntLongMap. 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.MutableIntLongMapMutableIntLongMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntLongMapMutableLongIntMap. flipUniqueValues()MutableIntLongMapMutableIntLongMap. reject(IntLongPredicate predicate)MutableIntLongMapMutableIntLongMap. select(IntLongPredicate predicate)default MutableIntLongMapMutableIntLongMap. withAllKeyValues(Iterable<IntLongPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableIntLongMapMutableIntLongMap. withKeyValue(int key, long value)Associates a value with the specified key.MutableIntLongMapMutableIntLongMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntLongMapMutableIntLongMap. withoutKey(int key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntLongMap Modifier and Type Class Description classIntLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedIntLongMapA synchronized view of aMutableIntLongMap.classUnmodifiableIntLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntLongMap Modifier and Type Method Description MutableIntLongMapIntLongHashMap. asSynchronized()MutableIntLongMapSynchronizedIntLongMap. asSynchronized()MutableIntLongMapUnmodifiableIntLongMap. asSynchronized()MutableIntLongMapIntLongHashMap. asUnmodifiable()MutableIntLongMapSynchronizedIntLongMap. asUnmodifiable()MutableIntLongMapUnmodifiableIntLongMap. asUnmodifiable()MutableIntLongMapMutableIntLongMapFactoryImpl. empty()MutableIntLongMapLongIntHashMap. flipUniqueValues()MutableIntLongMapSynchronizedLongIntMap. flipUniqueValues()MutableIntLongMapUnmodifiableLongIntMap. flipUniqueValues()<T> MutableIntLongMapMutableIntLongMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)MutableIntLongMapMutableIntLongMapFactoryImpl. of()MutableIntLongMapMutableIntLongMapFactoryImpl. ofAll(IntLongMap map)MutableIntLongMapMutableIntLongMapFactoryImpl. ofInitialCapacity(int capacity)MutableIntLongMapSynchronizedIntLongMap. reject(IntLongPredicate predicate)MutableIntLongMapUnmodifiableIntLongMap. reject(IntLongPredicate predicate)MutableIntLongMapSynchronizedIntLongMap. select(IntLongPredicate predicate)MutableIntLongMapUnmodifiableIntLongMap. select(IntLongPredicate predicate)MutableIntLongMapMutableIntLongMapFactoryImpl. with()MutableIntLongMapMutableIntLongMapFactoryImpl. withAll(IntLongMap map)MutableIntLongMapMutableIntLongMapFactoryImpl. withInitialCapacity(int capacity)MutableIntLongMapSynchronizedIntLongMap. withKeyValue(int key, long value)MutableIntLongMapUnmodifiableIntLongMap. withKeyValue(int key, long value)MutableIntLongMapSynchronizedIntLongMap. withoutAllKeys(IntIterable keys)MutableIntLongMapUnmodifiableIntLongMap. withoutAllKeys(IntIterable keys)MutableIntLongMapSynchronizedIntLongMap. withoutKey(int key)MutableIntLongMapUnmodifiableIntLongMap. withoutKey(int key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntLongMap Constructor Description SynchronizedIntLongMap(MutableIntLongMap map)SynchronizedIntLongMap(MutableIntLongMap map, Object newLock)UnmodifiableIntLongMap(MutableIntLongMap map)