Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongDoubleMap
| 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 MutableLongDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMapMutableLongDoubleMapFactory. empty()<T> MutableLongDoubleMapMutableLongDoubleMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapMutableLongDoubleMapFactory. of()Same asMutableLongDoubleMapFactory.empty().MutableLongDoubleMapMutableLongDoubleMapFactory. ofAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactory. ofInitialCapacity(int capacity)Same asMutableLongDoubleMapFactory.empty().MutableLongDoubleMapMutableLongDoubleMapFactory. with()Same asMutableLongDoubleMapFactory.empty().MutableLongDoubleMapMutableLongDoubleMapFactory. withAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactory. withInitialCapacity(int capacity)Same asMutableLongDoubleMapFactory.empty(). -
Uses of MutableLongDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMapMutableLongDoubleMap. 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.MutableLongDoubleMapMutableLongDoubleMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongDoubleMapMutableDoubleLongMap. flipUniqueValues()MutableLongDoubleMapMutableLongDoubleMap. reject(LongDoublePredicate predicate)MutableLongDoubleMapMutableLongDoubleMap. select(LongDoublePredicate predicate)default MutableLongDoubleMapMutableLongDoubleMap. withAllKeyValues(Iterable<LongDoublePair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableLongDoubleMapMutableLongDoubleMap. withKeyValue(long key, double value)Associates a value with the specified key.MutableLongDoubleMapMutableLongDoubleMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMapMutableLongDoubleMap. withoutKey(long key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableLongDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongDoubleMap Modifier and Type Class Description classLongDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedLongDoubleMapA synchronized view of aMutableLongDoubleMap.classUnmodifiableLongDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMapLongDoubleHashMap. asSynchronized()MutableLongDoubleMapSynchronizedLongDoubleMap. asSynchronized()MutableLongDoubleMapUnmodifiableLongDoubleMap. asSynchronized()MutableLongDoubleMapLongDoubleHashMap. asUnmodifiable()MutableLongDoubleMapSynchronizedLongDoubleMap. asUnmodifiable()MutableLongDoubleMapUnmodifiableLongDoubleMap. asUnmodifiable()MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. empty()MutableLongDoubleMapDoubleLongHashMap. flipUniqueValues()MutableLongDoubleMapSynchronizedDoubleLongMap. flipUniqueValues()MutableLongDoubleMapUnmodifiableDoubleLongMap. flipUniqueValues()<T> MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. of()MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. ofAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. ofInitialCapacity(int capacity)MutableLongDoubleMapSynchronizedLongDoubleMap. reject(LongDoublePredicate predicate)MutableLongDoubleMapUnmodifiableLongDoubleMap. reject(LongDoublePredicate predicate)MutableLongDoubleMapSynchronizedLongDoubleMap. select(LongDoublePredicate predicate)MutableLongDoubleMapUnmodifiableLongDoubleMap. select(LongDoublePredicate predicate)MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. with()MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. withAll(LongDoubleMap map)MutableLongDoubleMapMutableLongDoubleMapFactoryImpl. withInitialCapacity(int capacity)MutableLongDoubleMapSynchronizedLongDoubleMap. withKeyValue(long key, double value)MutableLongDoubleMapUnmodifiableLongDoubleMap. withKeyValue(long key, double value)MutableLongDoubleMapSynchronizedLongDoubleMap. withoutAllKeys(LongIterable keys)MutableLongDoubleMapUnmodifiableLongDoubleMap. withoutAllKeys(LongIterable keys)MutableLongDoubleMapSynchronizedLongDoubleMap. withoutKey(long key)MutableLongDoubleMapUnmodifiableLongDoubleMap. withoutKey(long key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongDoubleMap Constructor Description SynchronizedLongDoubleMap(MutableLongDoubleMap map)SynchronizedLongDoubleMap(MutableLongDoubleMap map, Object newLock)UnmodifiableLongDoubleMap(MutableLongDoubleMap map)