Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleIntMap
| 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 MutableDoubleIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleIntMap Modifier and Type Method Description MutableDoubleIntMapMutableDoubleIntMapFactory. empty()<T> MutableDoubleIntMapMutableDoubleIntMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleIntMapMutableDoubleIntMapFactory. of()Same asMutableDoubleIntMapFactory.empty().MutableDoubleIntMapMutableDoubleIntMapFactory. ofAll(DoubleIntMap map)MutableDoubleIntMapMutableDoubleIntMapFactory. ofInitialCapacity(int capacity)Same asMutableDoubleIntMapFactory.empty().MutableDoubleIntMapMutableDoubleIntMapFactory. with()Same asMutableDoubleIntMapFactory.empty().MutableDoubleIntMapMutableDoubleIntMapFactory. withAll(DoubleIntMap map)MutableDoubleIntMapMutableDoubleIntMapFactory. withInitialCapacity(int capacity)Same asMutableDoubleIntMapFactory.empty(). -
Uses of MutableDoubleIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleIntMap Modifier and Type Method Description MutableDoubleIntMapMutableDoubleIntMap. 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.MutableDoubleIntMapMutableDoubleIntMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleIntMapMutableIntDoubleMap. flipUniqueValues()MutableDoubleIntMapMutableDoubleIntMap. reject(DoubleIntPredicate predicate)MutableDoubleIntMapMutableDoubleIntMap. select(DoubleIntPredicate predicate)default MutableDoubleIntMapMutableDoubleIntMap. withAllKeyValues(Iterable<DoubleIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleIntMapMutableDoubleIntMap. withKeyValue(double key, int value)Associates a value with the specified key.MutableDoubleIntMapMutableDoubleIntMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleIntMapMutableDoubleIntMap. withoutKey(double key)Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableDoubleIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleIntMap Modifier and Type Class Description classDoubleIntHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedDoubleIntMapA synchronized view of aMutableDoubleIntMap.classUnmodifiableDoubleIntMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleIntMap Modifier and Type Method Description MutableDoubleIntMapDoubleIntHashMap. asSynchronized()MutableDoubleIntMapSynchronizedDoubleIntMap. asSynchronized()MutableDoubleIntMapUnmodifiableDoubleIntMap. asSynchronized()MutableDoubleIntMapDoubleIntHashMap. asUnmodifiable()MutableDoubleIntMapSynchronizedDoubleIntMap. asUnmodifiable()MutableDoubleIntMapUnmodifiableDoubleIntMap. asUnmodifiable()MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. empty()MutableDoubleIntMapIntDoubleHashMap. flipUniqueValues()MutableDoubleIntMapSynchronizedIntDoubleMap. flipUniqueValues()MutableDoubleIntMapUnmodifiableIntDoubleMap. flipUniqueValues()<T> MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. of()MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. ofAll(DoubleIntMap map)MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. ofInitialCapacity(int capacity)MutableDoubleIntMapSynchronizedDoubleIntMap. reject(DoubleIntPredicate predicate)MutableDoubleIntMapUnmodifiableDoubleIntMap. reject(DoubleIntPredicate predicate)MutableDoubleIntMapSynchronizedDoubleIntMap. select(DoubleIntPredicate predicate)MutableDoubleIntMapUnmodifiableDoubleIntMap. select(DoubleIntPredicate predicate)MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. with()MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. withAll(DoubleIntMap map)MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. withInitialCapacity(int capacity)MutableDoubleIntMapSynchronizedDoubleIntMap. withKeyValue(double key, int value)MutableDoubleIntMapUnmodifiableDoubleIntMap. withKeyValue(double key, int value)MutableDoubleIntMapSynchronizedDoubleIntMap. withoutAllKeys(DoubleIterable keys)MutableDoubleIntMapUnmodifiableDoubleIntMap. withoutAllKeys(DoubleIterable keys)MutableDoubleIntMapSynchronizedDoubleIntMap. withoutKey(double key)MutableDoubleIntMapUnmodifiableDoubleIntMap. withoutKey(double key)Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableDoubleIntMap Constructor Description SynchronizedDoubleIntMap(MutableDoubleIntMap map)SynchronizedDoubleIntMap(MutableDoubleIntMap map, Object newLock)UnmodifiableDoubleIntMap(MutableDoubleIntMap map)