Uses of Interface
org.eclipse.collections.api.DoubleIterable
Packages that use DoubleIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains factory API for creating immutable primitive list instances.
This package contains factory API for creating primitive set instances.
This package contains factory API for creating primitive stack instances.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the immutable primitive bag interfaces.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap
interface.This package contains implementations of the
MutableCollection
interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the immutable primitive set interfaces.
This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack
interface.This package contains implementations of the immutable primitive stack interfaces.
This package contains implementations of the
MutableStack
interface.This package contains implementations of the mutable primitive stack interfaces.
-
Uses of DoubleIterable in org.eclipse.collections.api
Subinterfaces of DoubleIterable in org.eclipse.collections.apiModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return DoubleIterableModifier and TypeMethodDescriptionRichIterable.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.reject
(DoublePredicate predicate) Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.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 DoubleIterableModifier and TypeMethodDescriptiondefault RichIterable
<DoubleIterable> DoubleIterable.chunk
(int size) Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type DoubleIterableModifier and TypeMethodDescriptiondefault 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 DoubleIterableModifier and TypeMethodDescriptiondefault <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.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file primitiveBag.stg.interface
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
This file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleBag.newWithAll
(DoubleIterable elements) ImmutableDoubleBag.newWithoutAll
(DoubleIterable elements) MutableDoubleBag.withAll
(DoubleIterable elements) MutableDoubleBag.withoutAll
(DoubleIterable elements) -
Uses of DoubleIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.collection.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
This file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
MutableDoubleCollection.addAll
(DoubleIterable source) ImmutableDoubleCollection.newWithAll
(DoubleIterable elements) ImmutableDoubleCollection.newWithoutAll
(DoubleIterable elements) boolean
MutableDoubleCollection.removeAll
(DoubleIterable source) boolean
MutableDoubleCollection.retainAll
(DoubleIterable elements) MutableDoubleCollection.withAll
(DoubleIterable elements) 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 DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleBagFactory.ofAll
(DoubleIterable items) MutableDoubleBagFactory.ofAll
(DoubleIterable items) ImmutableDoubleBagFactory.withAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleListFactory.ofAll
(DoubleIterable items) MutableDoubleListFactory.ofAll
(DoubleIterable items) ImmutableDoubleListFactory.withAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleSetFactory.ofAll
(DoubleIterable items) MutableDoubleSetFactory.ofAll
(DoubleIterable items) ImmutableDoubleSetFactory.withAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleStackFactory.ofAll
(DoubleIterable items) MutableDoubleStackFactory.ofAll
(DoubleIterable items) ImmutableDoubleStackFactory.ofAllReversed
(DoubleIterable items) MutableDoubleStackFactory.ofAllReversed
(DoubleIterable items) ImmutableDoubleStackFactory.withAll
(DoubleIterable items) MutableDoubleStackFactory.withAll
(DoubleIterable items) ImmutableDoubleStackFactory.withAllReversed
(DoubleIterable items) MutableDoubleStackFactory.withAllReversed
(DoubleIterable items) -
Uses of DoubleIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file primitiveList.stg.interface
This file was automatically generated from template file immutablePrimitiveList.stg.interface
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
MutableDoubleList.addAllAtIndex
(int index, DoubleIterable source) ImmutableDoubleList.newWithAll
(DoubleIterable elements) ImmutableDoubleList.newWithoutAll
(DoubleIterable elements) MutableDoubleList.withAll
(DoubleIterable elements) 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.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file primitiveValuesMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
This file was automatically generated from template file objectPrimitiveMap.stg.interface
This file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleBooleanMap.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.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.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.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.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.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.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.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.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.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleByteMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleCharMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleDoubleMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleFloatMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleIntMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleLongMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleObjectMap.withoutAllKeys
(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.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.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
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.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file primitiveSet.stg.interface
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
This file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleSet.newWithAll
(DoubleIterable elements) ImmutableDoubleSet.newWithoutAll
(DoubleIterable elements) MutableDoubleSet.withAll
(DoubleIterable elements) MutableDoubleSet.withoutAll
(DoubleIterable elements) -
Uses of DoubleIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.stack.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file primitiveStack.stg.interface
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
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 DoubleIterableModifier and TypeMethodDescriptionUnmodifiableRichIterable.collectDouble
(DoubleFunction<? super T> doubleFunction) Method parameters in org.eclipse.collections.impl with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescription(package private) final class
ImmutableDoubleEmptyBag is an optimization forImmutableDoubleBag
of size 0.(package private) final class
ImmutableDoubleHashBag is the non-modifiable equivalent ofDoubleHashBag
.(package private) final class
ImmutableDoubleSingletonBag is an optimization forImmutableDoubleBag
of size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleEmptyBag.chunk
(int size) ImmutableDoubleHashBag.chunk
(int size) ImmutableDoubleSingletonBag.chunk
(int size) Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
ImmutableDoubleEmptyBag.containsAll
(DoubleIterable source) boolean
ImmutableDoubleHashBag.containsAll
(DoubleIterable source) boolean
ImmutableDoubleSingletonBag.containsAll
(DoubleIterable source) ImmutableDoubleEmptyBag.newWithAll
(DoubleIterable elements) ImmutableDoubleHashBag.newWithAll
(DoubleIterable elements) ImmutableDoubleSingletonBag.newWithAll
(DoubleIterable elements) ImmutableDoubleEmptyBag.newWithoutAll
(DoubleIterable elements) ImmutableDoubleHashBag.newWithoutAll
(DoubleIterable elements) ImmutableDoubleSingletonBag.newWithoutAll
(DoubleIterable elements) ImmutableDoubleBagFactoryImpl.ofAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeClassDescriptionclass
DoubleHashBag is similar toHashBag
, and is memory-optimized for double primitives.class
A synchronized view of aMutableDoubleBag
.class
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 DoubleIterableMethods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
DoubleHashBag.addAll
(DoubleIterable source) static DoubleHashBag
DoubleHashBag.newBag
(DoubleIterable source) MutableDoubleBagFactoryImpl.ofAll
(DoubleIterable items) boolean
DoubleHashBag.removeAll
(DoubleIterable source) boolean
DoubleHashBag.retainAll
(DoubleIterable source) DoubleHashBag.withAll
(DoubleIterable iterable) MutableDoubleBagFactoryImpl.withAll
(DoubleIterable items) SynchronizedDoubleBag.withAll
(DoubleIterable elements) UnmodifiableDoubleBag.withAll
(DoubleIterable elements) DoubleHashBag.withoutAll
(DoubleIterable iterable) SynchronizedDoubleBag.withoutAll
(DoubleIterable elements) UnmodifiableDoubleBag.withoutAll
(DoubleIterable elements) Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type DoubleIterable -
Uses of DoubleIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescriptionUnmodifiableBiMap.collectDouble
(DoubleFunction<? super V> doubleFunction) Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescriptionAbstractSynchronizedRichIterable.collectDouble
(DoubleFunction<? super T> doubleFunction) Method parameters in org.eclipse.collections.impl.collection with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescription<R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.flatCollectDouble
(Function<? super T, ? extends DoubleIterable> function, R target) final <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.flatCollectDouble
(Function<? super T, ? extends DoubleIterable> function, R target) <R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection.flatCollectDouble
(Function<? super T, ? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
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 DoubleIterableModifier and TypeMethodDescriptionAbstractSynchronizedDoubleCollection.chunk
(int size) AbstractUnmodifiableDoubleCollection.chunk
(int size) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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) AbstractSynchronizedDoubleCollection.withAll
(DoubleIterable elements) AbstractUnmodifiableDoubleCollection.withAll
(DoubleIterable elements) AbstractSynchronizedDoubleCollection.withoutAll
(DoubleIterable elements) AbstractUnmodifiableDoubleCollection.withoutAll
(DoubleIterable elements) -
Uses of DoubleIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
This file was automatically generated from template file reversePrimitiveIterable.stg.class
This file was automatically generated from template file selectPrimitiveIterable.stg.class
This file was automatically generated from template file tapPrimitiveIterable.stg.Fields in org.eclipse.collections.impl.lazy.primitive declared as DoubleIterableModifier and TypeFieldDescriptionprivate final DoubleIterable
ChunkDoubleIterable.adapted
private final DoubleIterable
TapDoubleIterable.adapted
private final DoubleIterable
LazyDoubleIterableAdapter.delegate
private final DoubleIterable
SelectDoubleIterable.delegate
private final DoubleIterable
CollectDoubleToBooleanIterable.iterable
private final DoubleIterable
CollectDoubleToByteIterable.iterable
private final DoubleIterable
CollectDoubleToCharIterable.iterable
private final DoubleIterable
CollectDoubleToDoubleIterable.iterable
private final DoubleIterable
CollectDoubleToFloatIterable.iterable
private final DoubleIterable
CollectDoubleToIntIterable.iterable
private final DoubleIterable
CollectDoubleToLongIterable.iterable
private final DoubleIterable
CollectDoubleToObjectIterable.iterable
private final DoubleIterable
CollectDoubleToShortIterable.iterable
private final DoubleIterable
FlatCollectDoubleToObjectIterable.iterable
Methods in org.eclipse.collections.impl.lazy.primitive that return DoubleIterableMethods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionAbstractLazyDoubleIterable.chunk
(int size) ChunkDoubleIterable.iterator()
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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 DoubleIterableModifier and TypeMethodDescriptionvoid
ChunkDoubleIterable.each
(Procedure<? super DoubleIterable> procedure) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleIterableModifierConstructorDescriptionChunkDoubleIterable
(DoubleIterable delegate, int size) ChunkDoubleIterator
(DoubleIterable iterable, int size) CollectDoubleToBooleanIterable
(DoubleIterable iterable, DoubleToBooleanFunction function) CollectDoubleToByteIterable
(DoubleIterable iterable, DoubleToByteFunction function) CollectDoubleToCharIterable
(DoubleIterable iterable, DoubleToCharFunction function) CollectDoubleToDoubleIterable
(DoubleIterable iterable, DoubleToDoubleFunction function) CollectDoubleToFloatIterable
(DoubleIterable iterable, DoubleToFloatFunction function) CollectDoubleToIntIterable
(DoubleIterable iterable, DoubleToIntFunction function) CollectDoubleToLongIterable
(DoubleIterable iterable, DoubleToLongFunction function) CollectDoubleToObjectIterable
(DoubleIterable iterable, DoubleToObjectFunction<? extends V> function) CollectDoubleToShortIterable
(DoubleIterable iterable, DoubleToShortFunction function) FlatCollectDoubleIterator
(DoubleIterable iterable, DoubleToObjectFunction<? extends Iterable<V>> newFunction) FlatCollectDoubleToObjectIterable
(DoubleIterable iterable, DoubleToObjectFunction<? extends Iterable<V>> function) LazyDoubleIterableAdapter
(DoubleIterable delegate) SelectDoubleIterable
(DoubleIterable delegate, DoublePredicate predicate) private
SelectDoubleIterator
(DoubleIterable iterable, DoublePredicate predicate) TapDoubleIterable
(DoubleIterable delegate, DoubleProcedure procedure) TapDoubleIterator
(DoubleIterable iterable, DoubleProcedure procedure) -
Uses of DoubleIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement DoubleIterableModifier and TypeClassDescription(package private) final class
ImmutableDoubleArrayList is the non-modifiable equivalent ofDoubleArrayList
.(package private) final class
ImmutableDoubleEmptyList is an optimization forImmutableDoubleList
of size 0.(package private) final class
ImmutableDoubleSingletonList is an optimization forImmutableDoubleList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleArrayList.chunk
(int size) ImmutableDoubleEmptyList.chunk
(int size) ImmutableDoubleSingletonList.chunk
(int size) Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
ImmutableDoubleArrayList.containsAll
(DoubleIterable source) boolean
ImmutableDoubleEmptyList.containsAll
(DoubleIterable source) boolean
ImmutableDoubleSingletonList.containsAll
(DoubleIterable source) static ImmutableDoubleArrayList
ImmutableDoubleArrayList.newList
(DoubleIterable iterable) ImmutableDoubleArrayList.newWithAll
(DoubleIterable elements) ImmutableDoubleEmptyList.newWithAll
(DoubleIterable elements) ImmutableDoubleSingletonList.newWithAll
(DoubleIterable elements) ImmutableDoubleArrayList.newWithoutAll
(DoubleIterable elements) ImmutableDoubleEmptyList.newWithoutAll
(DoubleIterable elements) ImmutableDoubleSingletonList.newWithoutAll
(DoubleIterable elements) ImmutableDoubleListFactoryImpl.ofAll
(DoubleIterable items) ImmutableDoubleListFactoryImpl.withAll
(DoubleIterable items) ImmutableDoubleArrayList.zipDouble
(DoubleIterable iterable) ImmutableDoubleEmptyList.zipDouble
(DoubleIterable iterable) 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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescriptionclass
DoubleArrayList is similar to FastList, and is memory-optimized for double primitives.class
A synchronized view of aMutableDoubleList
.class
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 DoubleIterableMethods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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) MutableDoubleListFactoryImpl.ofAll
(DoubleIterable items) boolean
DoubleArrayList.removeAll
(DoubleIterable source) boolean
DoubleArrayList.retainAll
(DoubleIterable source) DoubleArrayList.withAll
(DoubleIterable elements) MutableDoubleListFactoryImpl.withAll
(DoubleIterable items) SynchronizedDoubleList.withAll
(DoubleIterable elements) UnmodifiableDoubleList.withAll
(DoubleIterable elements) DoubleArrayList.withoutAll
(DoubleIterable elements) SynchronizedDoubleList.withoutAll
(DoubleIterable elements) UnmodifiableDoubleList.withoutAll
(DoubleIterable elements) DoubleArrayList.zipDouble
(DoubleIterable iterable) SynchronizedDoubleList.zipDouble
(DoubleIterable iterable) 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 DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) final class
ImmutableByteDoubleEmptyMap is an optimization forImmutableByteDoubleMap
of size 0.(package private) final class
ImmutableByteDoubleHashMap is the non-modifiable equivalent ofByteDoubleHashMap
.(package private) final class
ImmutableByteDoubleSingletonMap is an optimization forImmutableByteDoubleMap
of size 1.(package private) final class
ImmutableCharDoubleEmptyMap is an optimization forImmutableCharDoubleMap
of size 0.(package private) final class
ImmutableCharDoubleHashMap is the non-modifiable equivalent ofCharDoubleHashMap
.(package private) final class
ImmutableCharDoubleSingletonMap is an optimization forImmutableCharDoubleMap
of size 1.(package private) final class
ImmutableDoubleDoubleEmptyMap is an optimization forImmutableDoubleDoubleMap
of size 0.(package private) final class
ImmutableDoubleDoubleHashMap is the non-modifiable equivalent ofDoubleDoubleHashMap
.(package private) final class
ImmutableDoubleDoubleSingletonMap is an optimization forImmutableDoubleDoubleMap
of size 1.(package private) final class
ImmutableFloatDoubleEmptyMap is an optimization forImmutableFloatDoubleMap
of size 0.(package private) final class
ImmutableFloatDoubleHashMap is the non-modifiable equivalent ofFloatDoubleHashMap
.(package private) final class
ImmutableFloatDoubleSingletonMap is an optimization forImmutableFloatDoubleMap
of size 1.(package private) final class
ImmutableIntDoubleEmptyMap is an optimization forImmutableIntDoubleMap
of size 0.(package private) final class
ImmutableIntDoubleHashMap is the non-modifiable equivalent ofIntDoubleHashMap
.(package private) final class
ImmutableIntDoubleSingletonMap is an optimization forImmutableIntDoubleMap
of size 1.(package private) final class
ImmutableLongDoubleEmptyMap is an optimization forImmutableLongDoubleMap
of size 0.(package private) final class
ImmutableLongDoubleHashMap is the non-modifiable equivalent ofLongDoubleHashMap
.(package private) final class
ImmutableLongDoubleSingletonMap is an optimization forImmutableLongDoubleMap
of size 1.(package private) final class
ImmutableObjectDoubleEmptyMap is an optimization forImmutableObjectDoubleMap
of size 0.(package private) final class
ImmutableObjectDoubleHashMap is the non-modifiable equivalent ofObjectDoubleHashMap
.(package private) final class
ImmutableObjectDoubleSingletonMap is an optimization forImmutableObjectDoubleMap
of size 1.(package private) final class
ImmutableShortDoubleEmptyMap is an optimization forImmutableShortDoubleMap
of size 0.(package private) final class
ImmutableShortDoubleHashMap is the non-modifiable equivalent ofShortDoubleHashMap
.(package private) final class
ImmutableShortDoubleSingletonMap is an optimization forImmutableShortDoubleMap
of size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionImmutableByteDoubleEmptyMap.chunk
(int size) ImmutableByteDoubleHashMap.chunk
(int size) ImmutableByteDoubleSingletonMap.chunk
(int size) ImmutableCharDoubleEmptyMap.chunk
(int size) ImmutableCharDoubleHashMap.chunk
(int size) ImmutableCharDoubleSingletonMap.chunk
(int size) ImmutableDoubleDoubleEmptyMap.chunk
(int size) ImmutableDoubleDoubleHashMap.chunk
(int size) ImmutableDoubleDoubleSingletonMap.chunk
(int size) ImmutableFloatDoubleEmptyMap.chunk
(int size) ImmutableFloatDoubleHashMap.chunk
(int size) ImmutableFloatDoubleSingletonMap.chunk
(int size) ImmutableIntDoubleEmptyMap.chunk
(int size) ImmutableIntDoubleHashMap.chunk
(int size) ImmutableIntDoubleSingletonMap.chunk
(int size) ImmutableLongDoubleEmptyMap.chunk
(int size) ImmutableLongDoubleHashMap.chunk
(int size) ImmutableLongDoubleSingletonMap.chunk
(int size) ImmutableObjectDoubleEmptyMap.chunk
(int size) ImmutableObjectDoubleHashMap.chunk
(int size) ImmutableObjectDoubleSingletonMap.chunk
(int size) ImmutableShortDoubleEmptyMap.chunk
(int size) ImmutableShortDoubleHashMap.chunk
(int size) ImmutableShortDoubleSingletonMap.chunk
(int size) Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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) ImmutableDoubleBooleanEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleBooleanHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleBooleanSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleByteSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleCharEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleCharHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleCharSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleDoubleSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleFloatEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleFloatHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleFloatSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleIntEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleIntHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleIntSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleLongSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleObjectEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleObjectHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleObjectSingletonMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleShortEmptyMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleShortHashMap.newWithoutAllKeys
(DoubleIterable keys) ImmutableDoubleShortSingletonMap.newWithoutAllKeys
(DoubleIterable keys) Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
private class
private class
private class
private class
private class
private class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
private class
private class
private class
private class
private class
private class
private class
private class
private class
private class
private class
private class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
(package private) class
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
class
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
class
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
class
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
class
A synchronized view of aMutableByteDoubleMap
.class
A synchronized view of aMutableCharDoubleMap
.class
A synchronized view of aMutableDoubleDoubleMap
.class
A synchronized view of aMutableFloatDoubleMap
.class
A synchronized view of aMutableIntDoubleMap
.class
A synchronized view of aMutableLongDoubleMap
.class
A synchronized view of aMutableObjectDoubleMap
.class
A synchronized view of aMutableShortDoubleMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
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 DoubleIterableModifier and TypeMethodDescriptionAbstractMutableDoubleKeySet.chunk
(int size) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.chunk
(int size) AbstractMutableDoubleValuesMap.chunk
(int size) ObjectDoubleHashMap.chunk
(int size) ObjectDoubleHashMap.ValuesCollection.chunk
(int size) ObjectDoubleHashMapWithHashingStrategy.chunk
(int size) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.chunk
(int size) SynchronizedByteDoubleMap.chunk
(int size) SynchronizedCharDoubleMap.chunk
(int size) SynchronizedDoubleDoubleMap.chunk
(int size) SynchronizedFloatDoubleMap.chunk
(int size) SynchronizedIntDoubleMap.chunk
(int size) SynchronizedLongDoubleMap.chunk
(int size) SynchronizedObjectDoubleMap.chunk
(int size) SynchronizedShortDoubleMap.chunk
(int size) UnmodifiableByteDoubleMap.chunk
(int size) UnmodifiableCharDoubleMap.chunk
(int size) UnmodifiableDoubleDoubleMap.chunk
(int size) UnmodifiableFloatDoubleMap.chunk
(int size) UnmodifiableIntDoubleMap.chunk
(int size) UnmodifiableLongDoubleMap.chunk
(int size) UnmodifiableObjectDoubleMap.chunk
(int size) UnmodifiableShortDoubleMap.chunk
(int size) Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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) AbstractMutableDoubleKeySet.withAll
(DoubleIterable elements) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.withAll
(DoubleIterable elements) ObjectDoubleHashMap.ValuesCollection.withAll
(DoubleIterable elements) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.withAll
(DoubleIterable elements) AbstractMutableDoubleKeySet.withoutAll
(DoubleIterable elements) AbstractMutableDoubleValuesMap.AbstractDoubleValuesCollection.withoutAll
(DoubleIterable elements) ObjectDoubleHashMap.ValuesCollection.withoutAll
(DoubleIterable elements) ObjectDoubleHashMapWithHashingStrategy.ValuesCollection.withoutAll
(DoubleIterable elements) DoubleBooleanHashMap.withoutAllKeys
(DoubleIterable keys) DoubleByteHashMap.withoutAllKeys
(DoubleIterable keys) DoubleCharHashMap.withoutAllKeys
(DoubleIterable keys) DoubleDoubleHashMap.withoutAllKeys
(DoubleIterable keys) DoubleFloatHashMap.withoutAllKeys
(DoubleIterable keys) DoubleIntHashMap.withoutAllKeys
(DoubleIterable keys) DoubleLongHashMap.withoutAllKeys
(DoubleIterable keys) DoubleObjectHashMap.withoutAllKeys
(DoubleIterable keys) DoubleShortHashMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleBooleanMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleByteMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleCharMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleDoubleMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleFloatMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleIntMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleLongMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleObjectMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleShortMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleBooleanMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleByteMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleCharMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleDoubleMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleFloatMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleIntMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleLongMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleObjectMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleShortMap.withoutAllKeys
(DoubleIterable keys) Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
A synchronized view of a DoubleIterable.Fields in org.eclipse.collections.impl.primitive declared as DoubleIterableModifier and TypeFieldDescriptionprivate final DoubleIterable
SynchronizedDoubleIterable.iterable
Methods in org.eclipse.collections.impl.primitive that return DoubleIterableModifier and TypeMethodDescriptionSynchronizedDoubleIterable.reject
(DoublePredicate predicate) SynchronizedDoubleIterable.select
(DoublePredicate predicate) Methods in org.eclipse.collections.impl.primitive that return types with arguments of type DoubleIterableMethods in org.eclipse.collections.impl.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
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, 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 DoubleIterableModifierConstructorDescriptionprotected
SynchronizedDoubleIterable
(DoubleIterable iterable) protected
SynchronizedDoubleIterable
(DoubleIterable iterable, Object newLock) -
Uses of DoubleIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) final class
ImmutableDoubleEmptySet is an optimization forImmutableDoubleSet
of size 0.(package private) final class
ImmutableDoubleSingletonSet is an optimization forImmutableDoubleSet
of size 1.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionAbstractImmutableDoubleSet.chunk
(int size) ImmutableDoubleEmptySet.chunk
(int size) ImmutableDoubleSingletonSet.chunk
(int size) Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
ImmutableDoubleEmptySet.containsAll
(DoubleIterable source) boolean
ImmutableDoubleSingletonSet.containsAll
(DoubleIterable source) AbstractImmutableDoubleSet.newWithAll
(DoubleIterable elements) ImmutableDoubleEmptySet.newWithAll
(DoubleIterable elements) ImmutableDoubleSingletonSet.newWithAll
(DoubleIterable elements) AbstractImmutableDoubleSet.newWithoutAll
(DoubleIterable elements) ImmutableDoubleEmptySet.newWithoutAll
(DoubleIterable elements) ImmutableDoubleSingletonSet.newWithoutAll
(DoubleIterable elements) ImmutableDoubleSetFactoryImpl.ofAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitiveHashSet.stg.private static final class
class
A synchronized view of aMutableDoubleSet
.class
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 DoubleIterableMethods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
DoubleHashSet.addAll
(DoubleIterable source) static DoubleHashSet
DoubleHashSet.newSet
(DoubleIterable source) MutableDoubleSetFactoryImpl.ofAll
(DoubleIterable items) boolean
DoubleHashSet.removeAll
(DoubleIterable source) boolean
DoubleHashSet.retainAll
(DoubleIterable source) DoubleHashSet.withAll
(DoubleIterable elements) MutableDoubleSetFactoryImpl.withAll
(DoubleIterable items) SynchronizedDoubleSet.withAll
(DoubleIterable elements) UnmodifiableDoubleSet.withAll
(DoubleIterable elements) DoubleHashSet.withoutAll
(DoubleIterable elements) SynchronizedDoubleSet.withoutAll
(DoubleIterable elements) UnmodifiableDoubleSet.withoutAll
(DoubleIterable elements) Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type DoubleIterable -
Uses of DoubleIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement DoubleIterableModifier and TypeClassDescriptionclass
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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescription(package private) final class
ImmutableDoubleArrayStack is the non-modifiable equivalent ofDoubleArrayStack
.(package private) final class
ImmutableDoubleEmptyStack is an optimization forImmutableDoubleStack
of size 0.(package private) final class
ImmutableDoubleSingletonStack is an optimization forImmutableDoubleStack
of size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type DoubleIterableModifier and TypeMethodDescriptionImmutableDoubleEmptyStack.chunk
(int size) ImmutableDoubleSingletonStack.chunk
(int size) Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
ImmutableDoubleEmptyStack.containsAll
(DoubleIterable source) boolean
ImmutableDoubleSingletonStack.containsAll
(DoubleIterable source) static ImmutableDoubleArrayStack
ImmutableDoubleArrayStack.newStack
(DoubleIterable iterable) static ImmutableDoubleArrayStack
ImmutableDoubleArrayStack.newStackFromTopToBottom
(DoubleIterable items) ImmutableDoubleStackFactoryImpl.ofAll
(DoubleIterable items) ImmutableDoubleStackFactoryImpl.ofAllReversed
(DoubleIterable items) ImmutableDoubleStackFactoryImpl.withAll
(DoubleIterable items) 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 DoubleIterableModifier and TypeMethodDescription<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 DoubleIterableModifier and TypeClassDescriptionclass
DoubleArrayStack is similar toArrayStack
, and is memory-optimized for double primitives.class
A synchronized view of aMutableDoubleStack
.class
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 DoubleIterableModifier and TypeMethodDescriptionSynchronizedDoubleStack.chunk
(int size) UnmodifiableDoubleStack.chunk
(int size) Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionboolean
SynchronizedDoubleStack.containsAll
(DoubleIterable source) boolean
UnmodifiableDoubleStack.containsAll
(DoubleIterable source) static DoubleArrayStack
DoubleArrayStack.newStack
(DoubleIterable items) static DoubleArrayStack
DoubleArrayStack.newStackFromTopToBottom
(DoubleIterable items) MutableDoubleStackFactoryImpl.ofAll
(DoubleIterable items) MutableDoubleStackFactoryImpl.ofAllReversed
(DoubleIterable items) MutableDoubleStackFactoryImpl.withAll
(DoubleIterable items) MutableDoubleStackFactoryImpl.withAllReversed
(DoubleIterable items) -
Uses of DoubleIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement DoubleIterableModifier and TypeClassDescriptionclass
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 DoubleIterableMethods in org.eclipse.collections.impl.stack.primitive with parameters of type DoubleIterable -
Uses of DoubleIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type DoubleIterableModifier and TypeMethodDescriptionstatic 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) private static <T> 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 DoubleIterableModifier and TypeMethodDescriptionstatic 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.