Uses of Interface
org.eclipse.collections.api.DoubleIterable
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.primitive |
This package contains mutable and immutable primitive collection API.
|
org.eclipse.collections.api.factory.bag.primitive | |
org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
org.eclipse.collections.api.factory.set.primitive | |
org.eclipse.collections.api.factory.stack.primitive | |
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.ordered.primitive | |
org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
org.eclipse.collections.impl.bag | |
org.eclipse.collections.impl.bag.immutable.primitive |
This package contains implementations of the immutable primitive bag interfaces.
|
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.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.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
org.eclipse.collections.impl.list.immutable.primitive |
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
|
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.immutable.primitive |
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map 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.primitive | |
org.eclipse.collections.impl.set.immutable.primitive |
This package contains implementations of the immutable primitive set interfaces.
|
org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
org.eclipse.collections.impl.set.primitive | |
org.eclipse.collections.impl.stack.immutable.primitive |
This package contains implementations of the immutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
org.eclipse.collections.impl.stack.primitive | |
org.eclipse.collections.impl.utility.internal.primitive | |
org.eclipse.collections.impl.utility.primitive |
-
Uses of DoubleIterable in org.eclipse.collections.api
Subinterfaces of DoubleIterable in org.eclipse.collections.api Modifier and Type Interface Description interface
LazyDoubleIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return DoubleIterable Modifier and Type Method Description DoubleIterable
RichIterable. 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.DoubleIterable
DoubleIterable. reject(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.DoubleIterable
DoubleIterable. select(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that return true for the specified predicate.default DoubleIterable
DoubleIterable. tap(DoubleProcedure procedure)
Methods in org.eclipse.collections.api that return types with arguments of type DoubleIterable Modifier and Type Method Description default RichIterable<DoubleIterable>
DoubleIterable. chunk(int size)
Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type DoubleIterable Modifier and Type Method Description boolean
DoubleIterable. containsAll(DoubleIterable source)
Returns true if the all of the values specified in the source DoubleIterable are contained in the DoubleIterable, and false if they are not.Method parameters in org.eclipse.collections.api with type arguments of type DoubleIterable Modifier and Type Method Description 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. -
Uses of DoubleIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
DoubleBag
This file was automatically generated from template file primitiveBag.stg.interface
ImmutableDoubleBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
MutableDoubleBag
This file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleBag
ImmutableDoubleBag. newWithAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleBag. newWithoutAll(DoubleIterable elements)
MutableDoubleBag
MutableDoubleBag. withAll(DoubleIterable elements)
MutableDoubleBag
MutableDoubleBag. withoutAll(DoubleIterable elements)
-
Uses of DoubleIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interface
ImmutableDoubleCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableDoubleCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
MutableDoubleCollection. addAll(DoubleIterable source)
ImmutableDoubleCollection
ImmutableDoubleCollection. newWithAll(DoubleIterable elements)
ImmutableDoubleCollection
ImmutableDoubleCollection. newWithoutAll(DoubleIterable elements)
boolean
MutableDoubleCollection. removeAll(DoubleIterable source)
boolean
MutableDoubleCollection. retainAll(DoubleIterable elements)
MutableDoubleCollection
MutableDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
MutableDoubleCollection. withoutAll(DoubleIterable elements)
-
Uses of DoubleIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleBag
ImmutableDoubleBagFactory. ofAll(DoubleIterable items)
MutableDoubleBag
MutableDoubleBagFactory. ofAll(DoubleIterable items)
ImmutableDoubleBag
ImmutableDoubleBagFactory. withAll(DoubleIterable items)
MutableDoubleBag
MutableDoubleBagFactory. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleList
ImmutableDoubleListFactory. ofAll(DoubleIterable items)
MutableDoubleList
MutableDoubleListFactory. ofAll(DoubleIterable items)
ImmutableDoubleList
ImmutableDoubleListFactory. withAll(DoubleIterable items)
MutableDoubleList
MutableDoubleListFactory. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleSetFactory. ofAll(DoubleIterable items)
MutableDoubleSet
MutableDoubleSetFactory. ofAll(DoubleIterable items)
ImmutableDoubleSet
ImmutableDoubleSetFactory. withAll(DoubleIterable items)
MutableDoubleSet
MutableDoubleSetFactory. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. ofAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. ofAllReversed(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. ofAllReversed(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. withAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactory. withAllReversed(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactory. withAllReversed(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
DoubleList
This file was automatically generated from template file primitiveList.stg.interface
ImmutableDoubleList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableDoubleList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
MutableDoubleList. addAllAtIndex(int index, DoubleIterable source)
ImmutableDoubleList
ImmutableDoubleList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleList. newWithoutAll(DoubleIterable elements)
MutableDoubleList
MutableDoubleList. withAll(DoubleIterable elements)
MutableDoubleList
MutableDoubleList. withoutAll(DoubleIterable elements)
default ListIterable<DoubleDoublePair>
DoubleList. zipDouble(DoubleIterable iterable)
Returns aListIterable
formed from thisDoubleList
and anotherDoubleList
by combining corresponding elements in pairs.default ImmutableList<DoubleDoublePair>
ImmutableDoubleList. zipDouble(DoubleIterable iterable)
Returns anImmutableList
formed from thisImmutableDoubleList
and anotherDoubleList
by combining corresponding elements in pairs.default MutableList<DoubleDoublePair>
MutableDoubleList. zipDouble(DoubleIterable iterable)
Returns aMutableList
formed from thisMutableDoubleList
and anotherDoubleList
by combining corresponding elements in pairs. -
Uses of DoubleIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interface
ByteDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.interface
FloatDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectDoubleMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortDoubleMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
MutableByteDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
MutableFloatDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableObjectDoubleMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortDoubleMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
ObjectDoubleMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortDoubleMap
This file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleBooleanMap
ImmutableDoubleBooleanMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleByteMap
ImmutableDoubleByteMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleCharMap
ImmutableDoubleCharMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleDoubleMap
ImmutableDoubleDoubleMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleFloatMap
ImmutableDoubleFloatMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleIntMap
ImmutableDoubleIntMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleLongMap
ImmutableDoubleLongMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableDoubleShortMap
ImmutableDoubleShortMap. newWithoutAllKeys(DoubleIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableDoubleBooleanMap
MutableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleByteMap
MutableDoubleByteMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleCharMap
MutableDoubleCharMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleDoubleMap
MutableDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleFloatMap
MutableDoubleFloatMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleIntMap
MutableDoubleIntMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleLongMap
MutableDoubleLongMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleObjectMap<V>
MutableDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleShortMap
MutableDoubleShortMap. withoutAllKeys(DoubleIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of DoubleIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.ordered.primitive Modifier and Type Interface Description interface
OrderedDoubleIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleDoubleIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of DoubleIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
DoubleSet
This file was automatically generated from template file primitiveSet.stg.interface
ImmutableDoubleSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableDoubleSet
This file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleSet
ImmutableDoubleSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSet. newWithoutAll(DoubleIterable elements)
MutableDoubleSet
MutableDoubleSet. withAll(DoubleIterable elements)
MutableDoubleSet
MutableDoubleSet. withoutAll(DoubleIterable elements)
-
Uses of DoubleIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
DoubleStack
This file was automatically generated from template file primitiveStack.stg.interface
ImmutableDoubleStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableDoubleStack
This file was automatically generated from template file mutablePrimitiveStack.stg. -
Uses of DoubleIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return DoubleIterable Modifier and Type Method Description DoubleIterable
UnmodifiableRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction)
Method parameters in org.eclipse.collections.impl with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractBag. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleBag
ImmutableDoubleBagFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleBag
ImmutableDoubleBagFactoryImpl. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement DoubleIterable 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.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
DoubleHashBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
DoubleHashBag. addAll(DoubleIterable source)
static DoubleHashBag
DoubleHashBag. newBag(DoubleIterable source)
MutableDoubleBag
MutableDoubleBagFactoryImpl. ofAll(DoubleIterable items)
boolean
DoubleHashBag. removeAll(DoubleIterable source)
boolean
DoubleHashBag. retainAll(DoubleIterable source)
DoubleHashBag
DoubleHashBag. withAll(DoubleIterable iterable)
MutableDoubleBag
MutableDoubleBagFactoryImpl. withAll(DoubleIterable items)
SynchronizedDoubleBag
SynchronizedDoubleBag. withAll(DoubleIterable elements)
UnmodifiableDoubleBag
UnmodifiableDoubleBag. withAll(DoubleIterable elements)
DoubleHashBag
DoubleHashBag. withoutAll(DoubleIterable iterable)
SynchronizedDoubleBag
SynchronizedDoubleBag. withoutAll(DoubleIterable elements)
UnmodifiableDoubleBag
UnmodifiableDoubleBag. withoutAll(DoubleIterable elements)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type DoubleIterable Constructor Description DoubleHashBag(DoubleIterable iterable)
-
Uses of DoubleIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractBiMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return DoubleIterable Modifier and Type Method Description DoubleIterable
UnmodifiableBiMap. collectDouble(DoubleFunction<? super V> doubleFunction)
Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableBiMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return DoubleIterable Modifier and Type Method Description DoubleIterable
AbstractSynchronizedRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction)
Method parameters in org.eclipse.collections.impl.collection with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractSynchronizedRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <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)
-
Uses of DoubleIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement DoubleIterable 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 types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
AbstractSynchronizedDoubleCollection. chunk(int size)
RichIterable<DoubleIterable>
AbstractUnmodifiableDoubleCollection. chunk(int size)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
AbstractSynchronizedDoubleCollection. addAll(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. addAll(DoubleIterable source)
boolean
AbstractSynchronizedDoubleCollection. containsAll(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. containsAll(DoubleIterable source)
boolean
AbstractSynchronizedDoubleCollection. removeAll(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. removeAll(DoubleIterable source)
boolean
AbstractSynchronizedDoubleCollection. retainAll(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. retainAll(DoubleIterable source)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
AbstractSynchronizedDoubleCollection. withoutAll(DoubleIterable elements)
MutableDoubleCollection
AbstractUnmodifiableDoubleCollection. withoutAll(DoubleIterable elements)
-
Uses of DoubleIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractLazyDoubleIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectDoubleToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortToDoubleIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyDoubleIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseDoubleIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectDoubleIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapDoubleIterable
This file was automatically generated from template file tapPrimitiveIterable.stg.Methods in org.eclipse.collections.impl.lazy.primitive that return DoubleIterable Modifier and Type Method Description DoubleIterable
ChunkDoubleIterable.ChunkDoubleIterator. next()
Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
AbstractLazyDoubleIterable. chunk(int size)
Iterator<DoubleIterable>
ChunkDoubleIterable. iterator()
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
AbstractLazyDoubleIterable. containsAll(DoubleIterable source)
boolean
CollectDoubleIterable. containsAll(DoubleIterable source)
boolean
LazyDoubleIterableAdapter. containsAll(DoubleIterable source)
boolean
ReverseDoubleIterable. containsAll(DoubleIterable source)
boolean
SelectDoubleIterable. containsAll(DoubleIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type DoubleIterable Modifier and Type Method Description void
ChunkDoubleIterable. each(Procedure<? super DoubleIterable> procedure)
-
Uses of DoubleIterable in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleList
ImmutableDoubleListFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RFastList. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement DoubleIterable 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 that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
DoubleArrayList. chunk(int size)
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
DoubleArrayList. addAll(DoubleIterable source)
boolean
DoubleArrayList. addAllAtIndex(int index, DoubleIterable source)
boolean
SynchronizedDoubleList. addAllAtIndex(int index, DoubleIterable source)
boolean
UnmodifiableDoubleList. addAllAtIndex(int index, DoubleIterable source)
static DoubleArrayList
DoubleArrayList. newList(DoubleIterable source)
MutableDoubleList
MutableDoubleListFactoryImpl. ofAll(DoubleIterable items)
boolean
DoubleArrayList. removeAll(DoubleIterable source)
boolean
DoubleArrayList. retainAll(DoubleIterable source)
DoubleArrayList
DoubleArrayList. withAll(DoubleIterable elements)
MutableDoubleList
MutableDoubleListFactoryImpl. withAll(DoubleIterable items)
SynchronizedDoubleList
SynchronizedDoubleList. withAll(DoubleIterable elements)
UnmodifiableDoubleList
UnmodifiableDoubleList. withAll(DoubleIterable elements)
DoubleArrayList
DoubleArrayList. withoutAll(DoubleIterable elements)
SynchronizedDoubleList
SynchronizedDoubleList. withoutAll(DoubleIterable elements)
UnmodifiableDoubleList
UnmodifiableDoubleList. withoutAll(DoubleIterable elements)
MutableList<DoubleDoublePair>
DoubleArrayList. zipDouble(DoubleIterable iterable)
MutableList<DoubleDoublePair>
SynchronizedDoubleList. zipDouble(DoubleIterable iterable)
MutableList<DoubleDoublePair>
UnmodifiableDoubleList. zipDouble(DoubleIterable iterable)
-
Uses of DoubleIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractImmutableObjectDoubleMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg. -
Uses of DoubleIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableMutableMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractMutableDoubleKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableDoubleValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.class
ByteDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
CharDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
DoubleDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
FloatDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
IntDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
LongDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
ObjectDoubleHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectDoubleHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
ShortDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedByteDoubleMap
A synchronized view of aMutableByteDoubleMap
.class
SynchronizedCharDoubleMap
A synchronized view of aMutableCharDoubleMap
.class
SynchronizedDoubleDoubleMap
A synchronized view of aMutableDoubleDoubleMap
.class
SynchronizedFloatDoubleMap
A synchronized view of aMutableFloatDoubleMap
.class
SynchronizedIntDoubleMap
A synchronized view of aMutableIntDoubleMap
.class
SynchronizedLongDoubleMap
A synchronized view of aMutableLongDoubleMap
.class
SynchronizedObjectDoubleMap<K>
A synchronized view of aMutableObjectDoubleMap
.class
SynchronizedShortDoubleMap
A synchronized view of aMutableShortDoubleMap
.class
UnmodifiableByteDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectDoubleMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
AbstractMutableDoubleKeySet. chunk(int size)
RichIterable<DoubleIterable>
AbstractMutableDoubleValuesMap. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMapWithHashingStrategy. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedByteDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedCharDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedDoubleDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedFloatDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedIntDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedLongDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedObjectDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
SynchronizedShortDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableByteDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableCharDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableDoubleDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableFloatDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableIntDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableLongDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableObjectDoubleMap. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableShortDoubleMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
AbstractMutableDoubleKeySet. addAll(DoubleIterable source)
boolean
AbstractMutableDoubleKeySet. containsAll(DoubleIterable source)
boolean
AbstractMutableDoubleValuesMap. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMap. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy. containsAll(DoubleIterable source)
boolean
SynchronizedByteDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedCharDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedDoubleDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedFloatDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedIntDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedLongDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedObjectDoubleMap. containsAll(DoubleIterable source)
boolean
SynchronizedShortDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableByteDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableCharDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableDoubleDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableFloatDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableIntDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableLongDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableObjectDoubleMap. containsAll(DoubleIterable source)
boolean
UnmodifiableShortDoubleMap. containsAll(DoubleIterable source)
boolean
AbstractMutableDoubleKeySet. removeAll(DoubleIterable source)
MutableDoubleSet
AbstractMutableDoubleKeySet. withAll(DoubleIterable elements)
MutableDoubleSet
AbstractMutableDoubleKeySet. withoutAll(DoubleIterable elements)
DoubleBooleanHashMap
DoubleBooleanHashMap. withoutAllKeys(DoubleIterable keys)
DoubleByteHashMap
DoubleByteHashMap. withoutAllKeys(DoubleIterable keys)
DoubleCharHashMap
DoubleCharHashMap. withoutAllKeys(DoubleIterable keys)
DoubleDoubleHashMap
DoubleDoubleHashMap. withoutAllKeys(DoubleIterable keys)
DoubleFloatHashMap
DoubleFloatHashMap. withoutAllKeys(DoubleIterable keys)
DoubleIntHashMap
DoubleIntHashMap. withoutAllKeys(DoubleIterable keys)
DoubleLongHashMap
DoubleLongHashMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
DoubleObjectHashMap. withoutAllKeys(DoubleIterable keys)
DoubleShortHashMap
DoubleShortHashMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleBooleanMap
SynchronizedDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleByteMap
SynchronizedDoubleByteMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleCharMap
SynchronizedDoubleCharMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleDoubleMap
SynchronizedDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleFloatMap
SynchronizedDoubleFloatMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleIntMap
SynchronizedDoubleIntMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleLongMap
SynchronizedDoubleLongMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
SynchronizedDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleShortMap
SynchronizedDoubleShortMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleBooleanMap
UnmodifiableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleByteMap
UnmodifiableDoubleByteMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleCharMap
UnmodifiableDoubleCharMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleDoubleMap
UnmodifiableDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleFloatMap
UnmodifiableDoubleFloatMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleIntMap
UnmodifiableDoubleIntMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleLongMap
UnmodifiableDoubleLongMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleObjectMap<V>
UnmodifiableDoubleObjectMap. withoutAllKeys(DoubleIterable keys)
MutableDoubleShortMap
UnmodifiableDoubleShortMap. withoutAllKeys(DoubleIterable keys)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type DoubleIterable Modifier and Type Method Description <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 DoubleIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableMutableOrderedMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableTreeMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target)
-
Uses of DoubleIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractDoubleIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedDoubleIterable
A synchronized view of a DoubleIterable.Methods in org.eclipse.collections.impl.primitive that return DoubleIterable Modifier and Type Method Description DoubleIterable
SynchronizedDoubleIterable. reject(DoublePredicate predicate)
DoubleIterable
SynchronizedDoubleIterable. select(DoublePredicate predicate)
Methods in org.eclipse.collections.impl.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
SynchronizedDoubleIterable. chunk(int size)
Methods in org.eclipse.collections.impl.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
AbstractDoubleIterable. containsAll(DoubleIterable source)
boolean
SynchronizedDoubleIterable. containsAll(DoubleIterable source)
static SynchronizedDoubleIterable
SynchronizedDoubleIterable. of(DoubleIterable iterable)
This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable.static SynchronizedDoubleIterable
SynchronizedDoubleIterable. of(DoubleIterable iterable, Object lock)
This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable. -
Uses of DoubleIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractImmutableDoubleSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
AbstractImmutableDoubleSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleSet
ImmutableDoubleSetFactoryImpl. withAll(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement DoubleIterable 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 that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
DoubleHashSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
DoubleHashSet. addAll(DoubleIterable source)
static DoubleHashSet
DoubleHashSet. newSet(DoubleIterable source)
MutableDoubleSet
MutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)
boolean
DoubleHashSet. removeAll(DoubleIterable source)
boolean
DoubleHashSet. retainAll(DoubleIterable source)
DoubleHashSet
DoubleHashSet. withAll(DoubleIterable elements)
MutableDoubleSet
MutableDoubleSetFactoryImpl. withAll(DoubleIterable items)
SynchronizedDoubleSet
SynchronizedDoubleSet. withAll(DoubleIterable elements)
UnmodifiableDoubleSet
UnmodifiableDoubleSet. withAll(DoubleIterable elements)
DoubleHashSet
DoubleHashSet. withoutAll(DoubleIterable elements)
SynchronizedDoubleSet
SynchronizedDoubleSet. withoutAll(DoubleIterable elements)
UnmodifiableDoubleSet
UnmodifiableDoubleSet. withoutAll(DoubleIterable elements)
-
Uses of DoubleIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractDoubleSet
This file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of DoubleIterable in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAll(DoubleIterable items)
ImmutableDoubleStack
ImmutableDoubleStackFactoryImpl. withAllReversed(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <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 DoubleIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement DoubleIterable Modifier and Type Class Description class
DoubleArrayStack
DoubleArrayStack is similar toArrayStack
, and is memory-optimized for double primitives.class
SynchronizedDoubleStack
A synchronized view of aMutableDoubleStack
.class
UnmodifiableDoubleStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
SynchronizedDoubleStack. chunk(int size)
RichIterable<DoubleIterable>
UnmodifiableDoubleStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
SynchronizedDoubleStack. containsAll(DoubleIterable source)
boolean
UnmodifiableDoubleStack. containsAll(DoubleIterable source)
static DoubleArrayStack
DoubleArrayStack. newStack(DoubleIterable items)
static DoubleArrayStack
DoubleArrayStack. newStackFromTopToBottom(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAll(DoubleIterable items)
MutableDoubleStack
MutableDoubleStackFactoryImpl. withAllReversed(DoubleIterable items)
-
Uses of DoubleIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement DoubleIterable Modifier and Type Class Description class
AbstractDoubleStack
This file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
AbstractDoubleStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
AbstractDoubleStack. containsAll(DoubleIterable source)
-
Uses of DoubleIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type DoubleIterable Modifier and Type Method Description static boolean
DoubleIterableIterate. allSatisfy(DoubleIterable iterable, DoublePredicate predicate)
static boolean
DoubleIterableIterate. anySatisfy(DoubleIterable iterable, DoublePredicate predicate)
static void
DoubleIterableIterate. appendString(DoubleIterable iterable, Appendable appendable, String start, String separator, String end)
static <V, R extends Collection<V>>
RDoubleIterableIterate. collect(DoubleIterable iterable, DoubleToObjectFunction<? extends V> function, R targetCollection)
static int
DoubleIterableIterate. count(DoubleIterable iterable, DoublePredicate predicate)
static double
DoubleIterableIterate. detectIfNone(DoubleIterable iterable, DoublePredicate predicate, double ifNone)
static void
DoubleIterableIterate. forEach(DoubleIterable iterable, DoubleProcedure procedure)
static <T> T
DoubleIterableIterate. injectInto(DoubleIterable iterable, T injectedValue, ObjectDoubleToObjectFunction<? super T,? extends T> function)
static boolean
DoubleIterableIterate. isEmpty(DoubleIterable iterable)
static double
DoubleIterableIterate. max(DoubleIterable iterable)
static double
DoubleIterableIterate. maxIfEmpty(DoubleIterable iterable, double ifEmpty)
static double
DoubleIterableIterate. min(DoubleIterable iterable)
static double
DoubleIterableIterate. minIfEmpty(DoubleIterable iterable, double ifEmpty)
static boolean
DoubleIterableIterate. noneSatisfy(DoubleIterable iterable, DoublePredicate predicate)
static boolean
DoubleIterableIterate. notEmpty(DoubleIterable iterable)
static <R extends MutableDoubleCollection>
RDoubleIterableIterate. reject(DoubleIterable iterable, DoublePredicate predicate, R targetCollection)
static <R extends MutableDoubleCollection>
RDoubleIterableIterate. select(DoubleIterable iterable, DoublePredicate predicate, R targetCollection)
static double
DoubleIterableIterate. sum(DoubleIterable iterable)
-
Uses of DoubleIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type DoubleIterable Modifier and Type Method Description static LazyDoubleIterable
LazyDoubleIterate. adapt(DoubleIterable iterable)
Creates a deferred double iterable for the specified double iterable.static <V> LazyIterable<V>
LazyDoubleIterate. collect(DoubleIterable iterable, DoubleToObjectFunction<? extends V> function)
Creates a deferred transforming double iterable for the specified double iterable.static <V> LazyIterable<V>
LazyDoubleIterate. collectIf(DoubleIterable iterable, DoublePredicate predicate, DoubleToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming double iterable for the specified double iterable.static <V> LazyIterable<V>
LazyDoubleIterate. flatCollect(DoubleIterable iterable, DoubleToObjectFunction<? extends Iterable<V>> function)
Creates a deferred transforming and flattening double iterable for the specified double iterable.static LazyDoubleIterable
LazyDoubleIterate. select(DoubleIterable iterable, DoublePredicate predicate)
Creates a deferred filtering double iterable for the specified double iterable.static LazyDoubleIterable
LazyDoubleIterate. tap(DoubleIterable iterable, DoubleProcedure procedure)
Creates a deferred tap iterable for the specified iterable.