Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableDoubleCollection
Package | Description |
---|---|
org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
org.eclipse.collections.api.collection | |
org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
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.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
org.eclipse.collections.impl.bimap | |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
org.eclipse.collections.impl.collection | |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
org.eclipse.collections.impl.map.ordered.mutable | |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
org.eclipse.collections.impl.utility.internal.primitive |
-
Uses of MutableDoubleCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableDoubleCollection Modifier and Type Method Description default <R extends MutableDoubleCollection>
RBooleanIterable. collectDouble(BooleanToDoubleFunction function, R target)
Returns the targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with 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 targetMutableDoubleCollection
with the results of applying the specified function on each element of the source collection.<R extends MutableDoubleCollection>
RRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction, R target)
Same asRichIterable.collectDouble(DoubleFunction)
, except that the results are gathered into the specifiedtarget
collection.default <R extends MutableDoubleCollection>
RShortIterable. collectDouble(ShortToDoubleFunction function, R target)
Returns the targetMutableDoubleCollection
with 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.primitive Modifier and Type Interface Description interface
MutableDoubleBag
This 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 MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
MutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction)
Returns a new primitivedouble
iterable 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 MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
MutableDoubleCollection. asSynchronized()
MutableDoubleCollection
MutableDoubleCollection. asUnmodifiable()
default MutableDoubleCollection
MutableDoubleCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableDoubleCollection
MutableDoubleCollection. reject(DoublePredicate predicate)
MutableDoubleCollection
MutableDoubleCollection. select(DoublePredicate predicate)
default MutableDoubleCollection
MutableDoubleCollection. tap(DoubleProcedure procedure)
MutableDoubleCollection
MutableDoubleCollection. with(double element)
MutableDoubleCollection
MutableDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
MutableDoubleCollection. without(double element)
MutableDoubleCollection
MutableDoubleCollection. withoutAll(DoubleIterable elements)
-
Uses of MutableDoubleCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
MutableDoubleList
This 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 MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
MutableObjectDoubleMap. reject(DoublePredicate predicate)
MutableDoubleCollection
MutableObjectDoubleMap. select(DoublePredicate predicate)
MutableDoubleCollection
DoubleValuesMap. values()
Returns the values in this map as a separate collection.MutableDoubleCollection
ObjectDoubleMap. values()
Returns the values in this map as a separate collection. -
Uses of MutableDoubleCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableDoubleCollection in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
MutableDoubleSet
This 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 MutableDoubleCollection Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction, R target)
<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 MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Class Description class
DoubleHashBag
DoubleHashBag is similar toHashBag
, and is memory-optimized for double primitives.class
SynchronizedDoubleBag
A synchronized view of aMutableDoubleBag
.class
UnmodifiableDoubleBag
This 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 MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Method Description <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
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
CollectDoubleProcedure. getDoubleCollection()
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableDoubleCollection Constructor Description CollectDoubleProcedure(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 MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractCollectionAdapter. collectDouble(DoubleFunction<? super T> doubleFunction, R target)
<R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection. 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)
<R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)
Methods in org.eclipse.collections.impl.collection.mutable that return MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
AbstractCollectionAdapter. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleCollection
AbstractSynchronizedMutableCollection. collectDouble(DoubleFunction<? super T> doubleFunction)
MutableDoubleCollection
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 MutableDoubleCollection Modifier and Type Class Description class
AbstractSynchronizedDoubleCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableDoubleCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedDoubleCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableDoubleCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableDoubleCollection Modifier and Type Method Description MutableDoubleCollection
AbstractSynchronizedDoubleCollection. asSynchronized()
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. asSynchronized()
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. asUnmodifiable()
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. asUnmodifiable()
MutableDoubleCollection
SynchronizedDoubleCollection. newEmpty()
MutableDoubleCollection
UnmodifiableDoubleCollection. newEmpty()
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. reject(DoublePredicate predicate)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. reject(DoublePredicate predicate)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. select(DoublePredicate predicate)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. select(DoublePredicate predicate)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. with(double element)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. with(double element)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. without(double element)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. without(double element)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. withoutAll(DoubleIterable elements)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. withoutAll(DoubleIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableDoubleCollection Modifier and Type Method Description static SynchronizedDoubleCollection
SynchronizedDoubleCollection. of(MutableDoubleCollection collection)
This method will take a MutableDoubleCollection and wrap it directly in a SynchronizedDoubleCollection.static SynchronizedDoubleCollection
SynchronizedDoubleCollection. of(MutableDoubleCollection collection, Object lock)
This method will take a MutableDoubleCollection and wrap it directly in a SynchronizedDoubleCollection.static UnmodifiableDoubleCollection
UnmodifiableDoubleCollection. of(MutableDoubleCollection collection)
This method will take a MutableDoubleCollection and wrap it directly in a UnmodifiableDoubleCollection. -
Uses of MutableDoubleCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableDoubleCollection Modifier and Type Method Description static <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.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Class Description class
DoubleArrayList
DoubleArrayList is similar toFastList
, and is memory-optimized for double primitives.class
SynchronizedDoubleList
A synchronized view of aMutableDoubleList
.class
UnmodifiableDoubleList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableDoubleCollection Modifier and Type Method Description <R extends MutableDoubleCollection>
RDoubleArrayList. reject(DoublePredicate predicate, R target)
<R extends MutableDoubleCollection>
RDoubleArrayList. select(DoublePredicate predicate, R target)
-
Uses of MutableDoubleCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Class Description class
AbstractMutableDoubleKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableDoubleCollection Modifier and Type Method Description <R extends MutableDoubleCollection>
RByteObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RCharObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RDoubleObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RFloatObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RIntObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RLongObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<R extends MutableDoubleCollection>
RShortObjectHashMap. collectDouble(DoubleFunction<? super V> doubleFunction, R target)
<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)
-
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 MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Method Description <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 MutableDoubleCollection Modifier and Type Class Description class
DoubleHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedDoubleSet
A synchronized view of aMutableDoubleSet
.class
UnmodifiableDoubleSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableDoubleCollection Modifier and Type Method Description <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.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableDoubleCollection Modifier and Type Method Description <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.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableDoubleCollection Modifier and Type Method Description static <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 specifiedtarget
collection.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)
Methods in org.eclipse.collections.impl.utility that return MutableDoubleCollection Modifier and Type Method Description static <T> MutableDoubleCollection
Iterate. collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction)
Returns a newdouble
collection 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 MutableDoubleCollection Modifier and Type Method Description static <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 MutableDoubleCollection Modifier and Type Method Description static <T> MutableDoubleCollection
IterableIterate. collectDouble(Iterable<T> iterable, DoubleFunction<? super T> doubleFunction)
static <T> MutableDoubleCollection
IteratorIterate. 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 MutableDoubleCollection Modifier and Type Method Description static <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)