Uses of Interface
org.eclipse.collections.api.DoubleIterable
-
Packages that use 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 This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.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 theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
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 theMutableList
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 theMutableMap
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 theMutableSortedMap
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 This package contains implementations of theImmutableStack
interface.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 theMutableStack
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 default boolean
DoubleIterable. containsAll(DoubleIterable source)
Returns true if all of the values specified in the source DoubleIterable are contained in the DoubleIterable, and false if they are not.default boolean
DoubleIterable. containsAny(DoubleIterable source)
Returns true if any of the values specified in the source DoubleIterable are contained in the DoubleIterable, and false if they are not.default boolean
DoubleIterable. containsNone(DoubleIterable source)
Returns true if none of the values specified in the source DoubleIterable are contained in the DoubleIterable, and false if they are.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
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement DoubleIterable Modifier and Type Class Description (package private) class
ImmutableDoubleEmptyBag
ImmutableDoubleEmptyBag is an optimization forImmutableDoubleBag
of size 0.(package private) class
ImmutableDoubleHashBag
ImmutableDoubleHashBag is the non-modifiable equivalent ofDoubleHashBag
.(package private) class
ImmutableDoubleSingletonBag
ImmutableDoubleSingletonBag is an optimization forImmutableDoubleBag
of size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
ImmutableDoubleEmptyBag. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleHashBag. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleSingletonBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
ImmutableDoubleEmptyBag. containsAll(DoubleIterable source)
boolean
ImmutableDoubleHashBag. containsAll(DoubleIterable source)
boolean
ImmutableDoubleSingletonBag. containsAll(DoubleIterable source)
ImmutableDoubleBag
ImmutableDoubleEmptyBag. newWithAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleHashBag. newWithAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleSingletonBag. newWithAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleEmptyBag. newWithoutAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleHashBag. newWithoutAll(DoubleIterable elements)
ImmutableDoubleBag
ImmutableDoubleSingletonBag. newWithoutAll(DoubleIterable elements)
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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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. containsAny(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. containsAny(DoubleIterable source)
boolean
AbstractSynchronizedDoubleCollection. containsNone(DoubleIterable source)
boolean
AbstractUnmodifiableDoubleCollection. containsNone(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.Fields in org.eclipse.collections.impl.lazy.primitive declared as DoubleIterable Modifier and Type Field Description private DoubleIterable
ChunkDoubleIterable. adapted
private DoubleIterable
TapDoubleIterable. adapted
private DoubleIterable
LazyDoubleIterableAdapter. delegate
private DoubleIterable
SelectDoubleIterable. delegate
private DoubleIterable
CollectDoubleToBooleanIterable. iterable
private DoubleIterable
CollectDoubleToByteIterable. iterable
private DoubleIterable
CollectDoubleToCharIterable. iterable
private DoubleIterable
CollectDoubleToDoubleIterable. iterable
private DoubleIterable
CollectDoubleToFloatIterable. iterable
private DoubleIterable
CollectDoubleToIntIterable. iterable
private DoubleIterable
CollectDoubleToLongIterable. iterable
private DoubleIterable
CollectDoubleToObjectIterable. iterable
private DoubleIterable
CollectDoubleToShortIterable. iterable
private DoubleIterable
FlatCollectDoubleToObjectIterable. iterable
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)
java.util.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
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement DoubleIterable Modifier and Type Class Description (package private) class
ImmutableDoubleArrayList
ImmutableDoubleArrayList is the non-modifiable equivalent ofDoubleArrayList
.(package private) class
ImmutableDoubleEmptyList
ImmutableDoubleEmptyList is an optimization forImmutableDoubleList
of size 0.(package private) class
ImmutableDoubleSingletonList
ImmutableDoubleSingletonList is an optimization forImmutableDoubleList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
ImmutableDoubleArrayList. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleEmptyList. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleSingletonList. chunk(int size)
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
ImmutableDoubleArrayList. containsAll(DoubleIterable source)
boolean
ImmutableDoubleEmptyList. containsAll(DoubleIterable source)
boolean
ImmutableDoubleSingletonList. containsAll(DoubleIterable source)
static ImmutableDoubleArrayList
ImmutableDoubleArrayList. newList(DoubleIterable iterable)
ImmutableDoubleList
ImmutableDoubleArrayList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWithAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleArrayList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleEmptyList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleSingletonList. newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. ofAll(DoubleIterable items)
ImmutableDoubleList
ImmutableDoubleListFactoryImpl. withAll(DoubleIterable items)
ImmutableList<DoubleDoublePair>
ImmutableDoubleArrayList. zipDouble(DoubleIterable iterable)
ImmutableList<DoubleDoublePair>
ImmutableDoubleEmptyList. zipDouble(DoubleIterable iterable)
ImmutableList<DoubleDoublePair>
ImmutableDoubleSingletonList. zipDouble(DoubleIterable iterable)
-
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 to FastList, 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.(package private) class
ImmutableByteDoubleEmptyMap
ImmutableByteDoubleEmptyMap is an optimization forImmutableByteDoubleMap
of size 0.(package private) class
ImmutableByteDoubleHashMap
ImmutableByteDoubleHashMap is the non-modifiable equivalent ofByteDoubleHashMap
.(package private) class
ImmutableByteDoubleSingletonMap
ImmutableByteDoubleSingletonMap is an optimization forImmutableByteDoubleMap
of size 1.(package private) class
ImmutableCharDoubleEmptyMap
ImmutableCharDoubleEmptyMap is an optimization forImmutableCharDoubleMap
of size 0.(package private) class
ImmutableCharDoubleHashMap
ImmutableCharDoubleHashMap is the non-modifiable equivalent ofCharDoubleHashMap
.(package private) class
ImmutableCharDoubleSingletonMap
ImmutableCharDoubleSingletonMap is an optimization forImmutableCharDoubleMap
of size 1.(package private) class
ImmutableDoubleDoubleEmptyMap
ImmutableDoubleDoubleEmptyMap is an optimization forImmutableDoubleDoubleMap
of size 0.(package private) class
ImmutableDoubleDoubleHashMap
ImmutableDoubleDoubleHashMap is the non-modifiable equivalent ofDoubleDoubleHashMap
.(package private) class
ImmutableDoubleDoubleSingletonMap
ImmutableDoubleDoubleSingletonMap is an optimization forImmutableDoubleDoubleMap
of size 1.(package private) class
ImmutableFloatDoubleEmptyMap
ImmutableFloatDoubleEmptyMap is an optimization forImmutableFloatDoubleMap
of size 0.(package private) class
ImmutableFloatDoubleHashMap
ImmutableFloatDoubleHashMap is the non-modifiable equivalent ofFloatDoubleHashMap
.(package private) class
ImmutableFloatDoubleSingletonMap
ImmutableFloatDoubleSingletonMap is an optimization forImmutableFloatDoubleMap
of size 1.(package private) class
ImmutableIntDoubleEmptyMap
ImmutableIntDoubleEmptyMap is an optimization forImmutableIntDoubleMap
of size 0.(package private) class
ImmutableIntDoubleHashMap
ImmutableIntDoubleHashMap is the non-modifiable equivalent ofIntDoubleHashMap
.(package private) class
ImmutableIntDoubleSingletonMap
ImmutableIntDoubleSingletonMap is an optimization forImmutableIntDoubleMap
of size 1.(package private) class
ImmutableLongDoubleEmptyMap
ImmutableLongDoubleEmptyMap is an optimization forImmutableLongDoubleMap
of size 0.(package private) class
ImmutableLongDoubleHashMap
ImmutableLongDoubleHashMap is the non-modifiable equivalent ofLongDoubleHashMap
.(package private) class
ImmutableLongDoubleSingletonMap
ImmutableLongDoubleSingletonMap is an optimization forImmutableLongDoubleMap
of size 1.(package private) class
ImmutableObjectDoubleEmptyMap<K>
ImmutableObjectDoubleEmptyMap is an optimization forImmutableObjectDoubleMap
of size 0.(package private) class
ImmutableObjectDoubleHashMap<K>
ImmutableObjectDoubleHashMap is the non-modifiable equivalent ofObjectDoubleHashMap
.(package private) class
ImmutableObjectDoubleSingletonMap<K>
ImmutableObjectDoubleSingletonMap is an optimization forImmutableObjectDoubleMap
of size 1.(package private) class
ImmutableShortDoubleEmptyMap
ImmutableShortDoubleEmptyMap is an optimization forImmutableShortDoubleMap
of size 0.(package private) class
ImmutableShortDoubleHashMap
ImmutableShortDoubleHashMap is the non-modifiable equivalent ofShortDoubleHashMap
.(package private) class
ImmutableShortDoubleSingletonMap
ImmutableShortDoubleSingletonMap is an optimization forImmutableShortDoubleMap
of size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
ImmutableByteDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableByteDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableByteDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableCharDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableCharDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableCharDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableFloatDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableFloatDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableFloatDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableIntDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableIntDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableIntDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableLongDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableLongDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableLongDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableObjectDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableObjectDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableObjectDoubleSingletonMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableShortDoubleEmptyMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableShortDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ImmutableShortDoubleSingletonMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
ImmutableByteDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableByteDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableByteDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableCharDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableCharDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableCharDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableDoubleDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableDoubleDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableDoubleDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableFloatDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableFloatDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableFloatDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableIntDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableIntDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableIntDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableLongDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableLongDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableLongDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableObjectDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableObjectDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableObjectDoubleSingletonMap. containsAll(DoubleIterable source)
boolean
ImmutableShortDoubleEmptyMap. containsAll(DoubleIterable source)
boolean
ImmutableShortDoubleHashMap. containsAll(DoubleIterable source)
boolean
ImmutableShortDoubleSingletonMap. containsAll(DoubleIterable source)
ImmutableDoubleBooleanMap
ImmutableDoubleBooleanEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleBooleanMap
ImmutableDoubleBooleanHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleBooleanMap
ImmutableDoubleBooleanSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleByteMap
ImmutableDoubleByteEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleByteMap
ImmutableDoubleByteHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleByteMap
ImmutableDoubleByteSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleCharMap
ImmutableDoubleCharEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleCharMap
ImmutableDoubleCharHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleCharMap
ImmutableDoubleCharSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleDoubleMap
ImmutableDoubleDoubleSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleFloatMap
ImmutableDoubleFloatEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleFloatMap
ImmutableDoubleFloatHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleFloatMap
ImmutableDoubleFloatSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleIntMap
ImmutableDoubleIntEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleIntMap
ImmutableDoubleIntHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleIntMap
ImmutableDoubleIntSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleLongMap
ImmutableDoubleLongSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleObjectMap<V>
ImmutableDoubleObjectSingletonMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleShortMap
ImmutableDoubleShortEmptyMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleShortMap
ImmutableDoubleShortHashMap. newWithoutAllKeys(DoubleIterable keys)
ImmutableDoubleShortMap
ImmutableDoubleShortSingletonMap. newWithoutAllKeys(DoubleIterable keys)
Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type DoubleIterable Modifier and Type Method Description <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)
-
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.protected class
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection
class
ByteDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteDoubleHashMap.ValuesCollection
class
CharDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharDoubleHashMap.ValuesCollection
private class
DoubleBooleanHashMap.KeySet
private class
DoubleBooleanHashMap.KeysView
private class
DoubleByteHashMap.KeySet
private class
DoubleByteHashMap.KeysView
private class
DoubleCharHashMap.KeySet
private class
DoubleCharHashMap.KeysView
class
DoubleDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleDoubleHashMap.KeySet
private class
DoubleDoubleHashMap.KeysView
private class
DoubleDoubleHashMap.ValuesCollection
private class
DoubleFloatHashMap.KeySet
private class
DoubleFloatHashMap.KeysView
private class
DoubleIntHashMap.KeySet
private class
DoubleIntHashMap.KeysView
private class
DoubleLongHashMap.KeySet
private class
DoubleLongHashMap.KeysView
private class
DoubleObjectHashMap.KeySet
private class
DoubleObjectHashMap.KeysView
private class
DoubleShortHashMap.KeySet
private class
DoubleShortHashMap.KeysView
class
FloatDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatDoubleHashMap.ValuesCollection
(package private) class
ImmutableDoubleDoubleMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableDoubleMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgclass
IntDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntDoubleHashMap.ValuesCollection
class
LongDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongDoubleHashMap.ValuesCollection
class
ObjectDoubleHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectDoubleHashMap.ValuesCollection
class
ObjectDoubleHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection
class
ShortDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortDoubleHashMap.ValuesCollection
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.AbstractDoubleValuesCollection. chunk(int size)
RichIterable<DoubleIterable>
AbstractMutableDoubleValuesMap. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMap. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMap.ValuesCollection. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMapWithHashingStrategy. chunk(int size)
RichIterable<DoubleIterable>
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. 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
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. addAll(DoubleIterable source)
boolean
ObjectDoubleHashMap.ValuesCollection. addAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. addAll(DoubleIterable source)
boolean
AbstractMutableDoubleKeySet. containsAll(DoubleIterable source)
boolean
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. containsAll(DoubleIterable source)
boolean
AbstractMutableDoubleValuesMap. containsAll(DoubleIterable source)
boolean
DoubleBooleanHashMap.KeysView. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMap. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMap.ValuesCollection. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy. containsAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. 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)
boolean
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. removeAll(DoubleIterable source)
boolean
ObjectDoubleHashMap.ValuesCollection. removeAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. removeAll(DoubleIterable source)
boolean
ByteDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
CharDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
DoubleBooleanHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleByteHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleCharHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleDoubleHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
DoubleFloatHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleIntHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleLongHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleObjectHashMap.KeySet. retainAll(DoubleIterable source)
boolean
DoubleShortHashMap.KeySet. retainAll(DoubleIterable source)
boolean
FloatDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
IntDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
LongDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
ObjectDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
boolean
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. retainAll(DoubleIterable source)
boolean
ShortDoubleHashMap.ValuesCollection. retainAll(DoubleIterable source)
MutableDoubleSet
AbstractMutableDoubleKeySet. withAll(DoubleIterable elements)
MutableDoubleCollection
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
ObjectDoubleHashMap.ValuesCollection. withAll(DoubleIterable elements)
MutableDoubleCollection
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. withAll(DoubleIterable elements)
MutableDoubleSet
AbstractMutableDoubleKeySet. withoutAll(DoubleIterable elements)
MutableDoubleCollection
AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection. withoutAll(DoubleIterable elements)
MutableDoubleCollection
ObjectDoubleHashMap.ValuesCollection. withoutAll(DoubleIterable elements)
MutableDoubleCollection
ObjectDoubleHashMapWithHashingStrategy.ValuesCollection. 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.Fields in org.eclipse.collections.impl.primitive declared as DoubleIterable Modifier and Type Field Description private DoubleIterable
SynchronizedDoubleIterable. iterable
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
SynchronizedDoubleIterable. containsAll(DoubleIterable source)
boolean
SynchronizedDoubleIterable. containsAny(DoubleIterable source)
boolean
SynchronizedDoubleIterable. containsNone(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, java.lang.Object lock)
This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type DoubleIterable Constructor Description SynchronizedDoubleIterable(DoubleIterable iterable)
SynchronizedDoubleIterable(DoubleIterable iterable, java.lang.Object newLock)
-
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.(package private) class
ImmutableDoubleEmptySet
ImmutableDoubleEmptySet is an optimization forImmutableDoubleSet
of size 0.(package private) class
ImmutableDoubleSingletonSet
ImmutableDoubleSingletonSet is an optimization forImmutableDoubleSet
of size 1.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)
RichIterable<DoubleIterable>
ImmutableDoubleEmptySet. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleSingletonSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
ImmutableDoubleEmptySet. containsAll(DoubleIterable source)
boolean
ImmutableDoubleSingletonSet. containsAll(DoubleIterable source)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. newWithAll(DoubleIterable elements)
ImmutableDoubleSet
AbstractImmutableDoubleSet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleEmptySet. newWithoutAll(DoubleIterable elements)
ImmutableDoubleSet
ImmutableDoubleSingletonSet. 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.private static class
DoubleHashSet.ImmutableDoubleHashSet
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)
Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type DoubleIterable Constructor Description DoubleHashSet(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
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type DoubleIterable Modifier and Type Method Description <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 DoubleIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement DoubleIterable Modifier and Type Class Description (package private) class
ImmutableDoubleArrayStack
ImmutableDoubleArrayStack is the non-modifiable equivalent ofDoubleArrayStack
.(package private) class
ImmutableDoubleEmptyStack
ImmutableDoubleEmptyStack is an optimization forImmutableDoubleStack
of size 0.(package private) class
ImmutableDoubleSingletonStack
ImmutableDoubleSingletonStack is an optimization forImmutableDoubleStack
of size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>
ImmutableDoubleEmptyStack. chunk(int size)
RichIterable<DoubleIterable>
ImmutableDoubleSingletonStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description boolean
ImmutableDoubleEmptyStack. containsAll(DoubleIterable source)
boolean
ImmutableDoubleSingletonStack. containsAll(DoubleIterable source)
static ImmutableDoubleArrayStack
ImmutableDoubleArrayStack. newStack(DoubleIterable iterable)
static ImmutableDoubleArrayStack
ImmutableDoubleArrayStack. newStackFromTopToBottom(DoubleIterable items)
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, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
static <V,R extends java.util.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)
private static <T> java.lang.String
DoubleIterableIterate. stringValueOfItem(DoubleIterable iterable, T item)
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 java.lang.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.
-