Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableDoubleCollection
Packages that use MutableDoubleCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableDoubleCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptiondefault <R extends MutableDoubleCollection>
RBooleanIterable.collectDouble(BooleanToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RByteIterable.collectDouble(ByteToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RCharIterable.collectDouble(CharToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RDoubleIterable.collectDouble(DoubleToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RFloatIterable.collectDouble(FloatToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RIntIterable.collectDouble(IntToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RLongIterable.collectDouble(LongToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) Same asRichIterable.collectDouble(DoubleFunction), except that the results are gathered into the specifiedtargetcollection.default <R extends MutableDoubleCollection>
RShortIterable.collectDouble(ShortToDoubleFunction function, R target) Returns the targetMutableDoubleCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RRichIterable.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) Same as flatCollect, only the results are collected into the target collection.default <R extends MutableDoubleCollection>
RDoubleIterable.reject(DoublePredicate predicate, R target) Same asDoubleIterable.reject(DoublePredicate), only the results are added to the target MutableDoubleCollection.default <R extends MutableDoubleCollection>
RDoubleIterable.select(DoublePredicate predicate, R target) Same asDoubleIterable.select(DoublePredicate), only the results are added to the target MutableDoubleCollection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableDoubleCollectionModifier and TypeMethodDescriptiondefault MutableDoubleCollectionMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) Returns a new primitivedoubleiterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableDoubleCollectionModifier and TypeMethodDescriptionMutableDoubleCollection.asSynchronized()MutableDoubleCollection.asUnmodifiable()default MutableDoubleCollectionMutableDoubleCollection.newEmpty()Creates a new empty mutable version of the same collection type.MutableDoubleCollection.reject(DoublePredicate predicate) MutableDoubleCollection.select(DoublePredicate predicate) default MutableDoubleCollectionMutableDoubleCollection.tap(DoubleProcedure procedure) MutableDoubleCollection.with(double element) MutableDoubleCollection.withAll(DoubleIterable elements) MutableDoubleCollection.without(double element) MutableDoubleCollection.withoutAll(DoubleIterable elements) -
Uses of MutableDoubleCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleCollectionModifier and TypeMethodDescriptionMutableObjectDoubleMap.reject(DoublePredicate predicate) MutableObjectDoubleMap.select(DoublePredicate predicate) DoubleValuesMap.values()Returns the values in this map as a separate collection.ObjectDoubleMap.values()Returns the values in this map as a separate collection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptiondefault <R extends MutableDoubleCollection>
ROrderedDoubleIterable.rejectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableDoubleCollection>
ROrderedDoubleIterable.selectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RUnmodifiableRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableRichIterable.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractBag.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractBag.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableDoubleCollectionModifier and TypeClassDescriptionclassDoubleHashBag is similar toHashBag, and is memory-optimized for double primitives.classA synchronized view of aMutableDoubleBag.classThis file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractBiMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractBiMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RUnmodifiableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableBiMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableDoubleCollectionModifier and TypeFieldDescriptionprivate final MutableDoubleCollectionCollectDoubleProcedure.doubleCollectionMethods in org.eclipse.collections.impl.block.procedure.primitive that return MutableDoubleCollectionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableDoubleCollectionModifierConstructorDescriptionCollectDoubleProcedure(DoubleFunction<? super T> doubleFunction, MutableDoubleCollection targetCollection) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractSynchronizedRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractSynchronizedRichIterable.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractCollectionAdapter.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) final <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) final <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) Methods in org.eclipse.collections.impl.collection.mutable that return MutableDoubleCollectionModifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) AbstractUnmodifiableMutableCollection.collectDouble(DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableDoubleCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableDoubleCollectionModifier and TypeFieldDescriptionprivate final MutableDoubleCollectionAbstractSynchronizedDoubleCollection.collectionprivate final MutableDoubleCollectionAbstractUnmodifiableDoubleCollection.collectionMethods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableDoubleCollectionModifier and TypeMethodDescriptionAbstractSynchronizedDoubleCollection.asSynchronized()AbstractUnmodifiableDoubleCollection.asSynchronized()AbstractSynchronizedDoubleCollection.asUnmodifiable()AbstractUnmodifiableDoubleCollection.asUnmodifiable()protected MutableDoubleCollectionAbstractSynchronizedDoubleCollection.getDoubleCollection()protected MutableDoubleCollectionAbstractUnmodifiableDoubleCollection.getDoubleCollection()SynchronizedDoubleCollection.newEmpty()UnmodifiableDoubleCollection.newEmpty()AbstractSynchronizedDoubleCollection.reject(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.reject(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.select(DoublePredicate predicate) AbstractUnmodifiableDoubleCollection.select(DoublePredicate predicate) AbstractSynchronizedDoubleCollection.with(double element) AbstractUnmodifiableDoubleCollection.with(double element) AbstractSynchronizedDoubleCollection.withAll(DoubleIterable elements) AbstractUnmodifiableDoubleCollection.withAll(DoubleIterable elements) AbstractSynchronizedDoubleCollection.without(double element) AbstractUnmodifiableDoubleCollection.without(double element) AbstractSynchronizedDoubleCollection.withoutAll(DoubleIterable elements) AbstractUnmodifiableDoubleCollection.withoutAll(DoubleIterable elements) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptionstatic SynchronizedDoubleCollectionSynchronizedDoubleCollection.of(MutableDoubleCollection collection) This method will take a MutableDoubleCollection and wrap it directly in a SynchronizedDoubleCollection.static SynchronizedDoubleCollectionSynchronizedDoubleCollection.of(MutableDoubleCollection collection, Object lock) This method will take a MutableDoubleCollection and wrap it directly in a SynchronizedDoubleCollection.static UnmodifiableDoubleCollectionUnmodifiableDoubleCollection.of(MutableDoubleCollection collection) This method will take a MutableDoubleCollection and wrap it directly in a UnmodifiableDoubleCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableDoubleCollectionModifierConstructorDescriptionprotectedprotectedAbstractSynchronizedDoubleCollection(MutableDoubleCollection collection, Object newLock) protectedprotectedSynchronizedDoubleCollection(MutableDoubleCollection collection) protectedSynchronizedDoubleCollection(MutableDoubleCollection collection, Object newLock) protectedUnmodifiableDoubleCollection(MutableDoubleCollection collection) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableDoubleCollection>
Collector<T, ?, R> Collectors2.collectDouble(DoubleFunction<? super T> function, Supplier<R> supplier) Returns a new MutableDoubleCollection with the results of applying the specified DoubleFunction on each element of the source. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableDoubleCollectionModifier and TypeFieldDescriptionprivate final Function0<MutableDoubleCollection> ChunkDoubleIterable.ChunkDoubleIterator.speciesNewStrategy -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RImmutableDoubleArrayList.reject(DoublePredicate predicate, R target) <R extends MutableDoubleCollection>
RImmutableDoubleArrayList.select(DoublePredicate predicate, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RFastList.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RFastList.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableDoubleCollectionModifier and TypeClassDescriptionclassDoubleArrayList is similar to FastList, and is memory-optimized for double primitives.classA synchronized view of aMutableDoubleList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RDoubleArrayList.reject(DoublePredicate predicate, R target) <R extends MutableDoubleCollection>
RSynchronizedDoubleList.rejectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableDoubleCollection>
RUnmodifiableDoubleList.rejectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableDoubleCollection>
RDoubleArrayList.select(DoublePredicate predicate, R target) <R extends MutableDoubleCollection>
RSynchronizedDoubleList.selectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableDoubleCollection>
RUnmodifiableDoubleList.selectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RImmutableByteObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableByteObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableByteObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableCharObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableCharObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableCharObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableDoubleObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableDoubleObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableDoubleObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableFloatObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableFloatObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableFloatObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableIntObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableIntObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableIntObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableLongObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableLongObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableLongObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableShortObjectEmptyMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableShortObjectHashMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableShortObjectSingletonMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableByteObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableCharObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableDoubleObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableFloatObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableIntObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableLongObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RImmutableShortObjectEmptyMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableDoubleCollectionModifier and TypeMethodDescriptionImmutableByteDoubleEmptyMap.values()ImmutableByteDoubleHashMap.values()ImmutableByteDoubleSingletonMap.values()ImmutableCharDoubleEmptyMap.values()ImmutableCharDoubleHashMap.values()ImmutableCharDoubleSingletonMap.values()ImmutableDoubleDoubleEmptyMap.values()ImmutableDoubleDoubleHashMap.values()ImmutableDoubleDoubleSingletonMap.values()ImmutableFloatDoubleEmptyMap.values()ImmutableFloatDoubleHashMap.values()ImmutableFloatDoubleSingletonMap.values()ImmutableIntDoubleEmptyMap.values()ImmutableIntDoubleHashMap.values()ImmutableIntDoubleSingletonMap.values()ImmutableLongDoubleEmptyMap.values()ImmutableLongDoubleHashMap.values()ImmutableLongDoubleSingletonMap.values()ImmutableObjectDoubleEmptyMap.values()ImmutableObjectDoubleHashMap.values()ImmutableObjectDoubleSingletonMap.values()ImmutableShortDoubleEmptyMap.values()ImmutableShortDoubleHashMap.values()ImmutableShortDoubleSingletonMap.values() -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RUnmodifiableMutableMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableMutableMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.protected classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classMethods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RSynchronizedByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableByteObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableCharObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableDoubleObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableFloatObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableIntObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableLongObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableShortObjectMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedByteObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedCharObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedDoubleObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedFloatObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedIntObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedLongObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedShortObjectMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleCollectionModifier and TypeMethodDescriptionAbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.asSynchronized()ObjectDoubleHashMap.ValuesCollection.asSynchronized()ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.asSynchronized()AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.asUnmodifiable()ObjectDoubleHashMap.ValuesCollection.asUnmodifiable()ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.asUnmodifiable()ByteDoubleHashMap.ValuesCollection.newEmpty()CharDoubleHashMap.ValuesCollection.newEmpty()DoubleDoubleHashMap.ValuesCollection.newEmpty()FloatDoubleHashMap.ValuesCollection.newEmpty()IntDoubleHashMap.ValuesCollection.newEmpty()LongDoubleHashMap.ValuesCollection.newEmpty()ObjectDoubleHashMap.ValuesCollection.newEmpty()ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.newEmpty()ShortDoubleHashMap.ValuesCollection.newEmpty()AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.reject(DoublePredicate predicate) ObjectDoubleHashMap.reject(DoublePredicate predicate) ObjectDoubleHashMap.ValuesCollection.reject(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.reject(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.reject(DoublePredicate predicate) SynchronizedObjectDoubleMap.reject(DoublePredicate predicate) UnmodifiableObjectDoubleMap.reject(DoublePredicate predicate) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.select(DoublePredicate predicate) ObjectDoubleHashMap.select(DoublePredicate predicate) ObjectDoubleHashMap.ValuesCollection.select(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.select(DoublePredicate predicate) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.select(DoublePredicate predicate) SynchronizedObjectDoubleMap.select(DoublePredicate predicate) UnmodifiableObjectDoubleMap.select(DoublePredicate predicate) ByteDoubleHashMap.values()CharDoubleHashMap.values()DoubleDoubleHashMap.values()FloatDoubleHashMap.values()IntDoubleHashMap.values()LongDoubleHashMap.values()ObjectDoubleHashMap.values()ObjectDoubleHashMapWithHashingStrategy.values()ShortDoubleHashMap.values()SynchronizedByteDoubleMap.values()SynchronizedCharDoubleMap.values()SynchronizedDoubleDoubleMap.values()SynchronizedFloatDoubleMap.values()SynchronizedIntDoubleMap.values()SynchronizedLongDoubleMap.values()SynchronizedObjectDoubleMap.values()SynchronizedShortDoubleMap.values()UnmodifiableByteDoubleMap.values()UnmodifiableCharDoubleMap.values()UnmodifiableDoubleDoubleMap.values()UnmodifiableFloatDoubleMap.values()UnmodifiableIntDoubleMap.values()UnmodifiableLongDoubleMap.values()UnmodifiableObjectDoubleMap.values()UnmodifiableShortDoubleMap.values()AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.with(double element) ObjectDoubleHashMap.ValuesCollection.with(double element) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.with(double element) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.withAll(DoubleIterable elements) ObjectDoubleHashMap.ValuesCollection.withAll(DoubleIterable elements) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.withAll(DoubleIterable elements) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.without(double element) ObjectDoubleHashMap.ValuesCollection.without(double element) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.without(double element) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.withoutAll(DoubleIterable elements) ObjectDoubleHashMap.ValuesCollection.withoutAll(DoubleIterable elements) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.withoutAll(DoubleIterable elements) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RUnmodifiableMutableOrderedMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableMutableOrderedMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RUnmodifiableTreeMap.collectDouble(DoubleFunction<? super V> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableTreeMap.flatCollectDouble(Function<? super V, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableDoubleCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveHashSet.stg.classA synchronized view of aMutableDoubleSet.classThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RDoubleHashSet.reject(DoublePredicate predicate, R target) <R extends MutableDoubleCollection>
RDoubleHashSet.select(DoublePredicate predicate, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RImmutableArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) Deprecated.<R extends MutableDoubleCollection>
RImmutableEmptyStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RImmutableArrayStack.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) Deprecated.<R extends MutableDoubleCollection>
RImmutableEmptyStack.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RArrayStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RSynchronizedStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RUnmodifiableStack.collectDouble(DoubleFunction<? super T> doubleFunction, R target) <R extends MutableDoubleCollection>
RArrayStack.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RSynchronizedStack.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RUnmodifiableStack.flatCollectDouble(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RSynchronizedDoubleStack.rejectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableDoubleCollection>
RSynchronizedDoubleStack.selectWithIndex(DoubleIntPredicate predicate, R target) Returns a new MutableDoubleCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableDoubleCollection>
RArrayIterate.collectDouble(T[] objectArray, DoubleFunction<? super T> doubleFunction, R target) static <T, R extends MutableDoubleCollection>
RArrayListIterate.collectDouble(ArrayList<T> list, DoubleFunction<? super T> doubleFunction, R target) static <T, R extends MutableDoubleCollection>
RIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target) Same asIterate.collectDouble(Iterable, DoubleFunction), except that the results are gathered into the specifiedtargetcollection.static <T, R extends MutableDoubleCollection>
RListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction, R target) static <K, V, R extends MutableDoubleCollection>
RMapIterate.collectDouble(Map<K, V> map, DoubleFunction<? super V> doubleFunction, R target) private static <T, R extends MutableDoubleCollection>
RArrayListIterate.collectDoubleFromInternalArray(ArrayList<T> source, DoubleFunction<? super T> doubleFunction, int elementsToCollect, R target) Methods in org.eclipse.collections.impl.utility that return MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <T> MutableDoubleCollectionIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction) Returns a newdoublecollection with the results of applying the specified doubleFunction for each element of the iterable.static <K,V> MutableDoubleCollection MapIterate.collectDouble(Map<K, V> map, DoubleFunction<? super V> doubleFunction) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <R extends MutableDoubleCollection, T>
RInternalArrayIterate.collectDouble(T[] items, int size, DoubleFunction<? super T> doubleFunction, R target) Adds all array elements to the target MutableDoubleCollection after using the function supplied to convert each source element to the appropriate typestatic <T, R extends MutableDoubleCollection>
RIterableIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction, R target) static <T, R extends MutableDoubleCollection>
RIteratorIterate.collectDouble(Iterator<T> iterator, DoubleFunction<? super T> doubleFunction, R target) static <T, R extends MutableDoubleCollection>
RRandomAccessListIterate.collectDouble(List<T> list, DoubleFunction<? super T> doubleFunction, R target) Methods in org.eclipse.collections.impl.utility.internal that return MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <T> MutableDoubleCollectionIterableIterate.collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction) static <T> MutableDoubleCollectionIteratorIterate.collectDouble(Iterator<T> iterator, DoubleFunction<? super T> doubleFunction) -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableDoubleCollectionModifier and TypeMethodDescriptionstatic <R extends MutableDoubleCollection>
RDoubleIterableIterate.reject(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.reject(DoubleIterator iterator, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIterableIterate.select(DoubleIterable iterable, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.select(DoubleIterator iterator, DoublePredicate predicate, R targetCollection)