Uses of Interface
org.eclipse.collections.api.DoubleIterable
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.bag.primitive |
This package contains API for Primitive Bags with Mutable and Immutable variants.
|
| org.eclipse.collections.api.collection.primitive |
This package contains mutable and immutable primitive collection API.
|
| org.eclipse.collections.api.factory.bag.primitive | |
| org.eclipse.collections.api.factory.list.primitive |
This package contains factory API for creating immutable primitive list instances.
|
| org.eclipse.collections.api.factory.set.primitive | |
| org.eclipse.collections.api.factory.stack.primitive | |
| org.eclipse.collections.api.list.primitive |
This package contains mutable and immutable primitive list API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.api.ordered.primitive | |
| org.eclipse.collections.api.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.api.stack.primitive |
This package contains mutable and immutable primitive stack API.
|
| org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
| org.eclipse.collections.impl.bag | |
| org.eclipse.collections.impl.bag.immutable.primitive |
This package contains implementations of the immutable primitive bag interfaces.
|
| org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
| org.eclipse.collections.impl.bimap | |
| org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
| org.eclipse.collections.impl.collection | |
| org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
| org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
| org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
| org.eclipse.collections.impl.list.immutable.primitive |
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
|
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| org.eclipse.collections.impl.map.immutable.primitive |
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
| org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
| org.eclipse.collections.impl.map.ordered.mutable | |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.primitive | |
| org.eclipse.collections.impl.set.immutable.primitive |
This package contains implementations of the immutable primitive set interfaces.
|
| org.eclipse.collections.impl.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
| org.eclipse.collections.impl.set.primitive | |
| org.eclipse.collections.impl.stack.immutable.primitive |
This package contains implementations of the immutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
| org.eclipse.collections.impl.stack.mutable.primitive |
This package contains implementations of the mutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stack.primitive | |
| org.eclipse.collections.impl.utility.internal.primitive | |
| org.eclipse.collections.impl.utility.primitive |
-
Uses of DoubleIterable in org.eclipse.collections.api
Subinterfaces of DoubleIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyDoubleIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return DoubleIterable Modifier and Type Method Description DoubleIterableRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction)Returns a new primitivedoubleiterable with the results of applying the specified function on each element of the source collection.DoubleIterableDoubleIterable. reject(DoublePredicate predicate)Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.DoubleIterableDoubleIterable. select(DoublePredicate predicate)Returns a new DoubleIterable with all of the elements in the DoubleIterable that return true for the specified predicate.default DoubleIterableDoubleIterable. 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 booleanDoubleIterable. containsAll(DoubleIterable source)Returns true if the all of the values specified in the source DoubleIterable are contained in the DoubleIterable, and false if they are not.Method parameters in org.eclipse.collections.api with type arguments of type DoubleIterable Modifier and Type Method Description default <R extends MutableDoubleCollection>
RRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)Same as flatCollect, only the results are collected into the target collection. -
Uses of DoubleIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of DoubleIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceDoubleBagThis file was automatically generated from template file primitiveBag.stg.interfaceImmutableDoubleBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceMutableDoubleBagThis 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 ImmutableDoubleBagImmutableDoubleBag. newWithAll(DoubleIterable elements)ImmutableDoubleBagImmutableDoubleBag. newWithoutAll(DoubleIterable elements)MutableDoubleBagMutableDoubleBag. withAll(DoubleIterable elements)MutableDoubleBagMutableDoubleBag. 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 interfaceImmutableDoubleCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableDoubleCollectionThis 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 booleanMutableDoubleCollection. addAll(DoubleIterable source)ImmutableDoubleCollectionImmutableDoubleCollection. newWithAll(DoubleIterable elements)ImmutableDoubleCollectionImmutableDoubleCollection. newWithoutAll(DoubleIterable elements)booleanMutableDoubleCollection. removeAll(DoubleIterable source)booleanMutableDoubleCollection. retainAll(DoubleIterable elements)MutableDoubleCollectionMutableDoubleCollection. withAll(DoubleIterable elements)MutableDoubleCollectionMutableDoubleCollection. 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 ImmutableDoubleBagImmutableDoubleBagFactory. ofAll(DoubleIterable items)MutableDoubleBagMutableDoubleBagFactory. ofAll(DoubleIterable items)ImmutableDoubleBagImmutableDoubleBagFactory. withAll(DoubleIterable items)MutableDoubleBagMutableDoubleBagFactory. 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 ImmutableDoubleListImmutableDoubleListFactory. ofAll(DoubleIterable items)MutableDoubleListMutableDoubleListFactory. ofAll(DoubleIterable items)ImmutableDoubleListImmutableDoubleListFactory. withAll(DoubleIterable items)MutableDoubleListMutableDoubleListFactory. 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 ImmutableDoubleSetImmutableDoubleSetFactory. ofAll(DoubleIterable items)MutableDoubleSetMutableDoubleSetFactory. ofAll(DoubleIterable items)ImmutableDoubleSetImmutableDoubleSetFactory. withAll(DoubleIterable items)MutableDoubleSetMutableDoubleSetFactory. 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 ImmutableDoubleStackImmutableDoubleStackFactory. ofAll(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactory. ofAll(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactory. ofAllReversed(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactory. ofAllReversed(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactory. withAll(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactory. withAll(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactory. withAllReversed(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactory. 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 interfaceDoubleListThis file was automatically generated from template file primitiveList.stg.interfaceImmutableDoubleListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableDoubleListThis 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 booleanMutableDoubleList. addAllAtIndex(int index, DoubleIterable source)ImmutableDoubleListImmutableDoubleList. newWithAll(DoubleIterable elements)ImmutableDoubleListImmutableDoubleList. newWithoutAll(DoubleIterable elements)MutableDoubleListMutableDoubleList. withAll(DoubleIterable elements)MutableDoubleListMutableDoubleList. withoutAll(DoubleIterable elements)default ListIterable<DoubleDoublePair>DoubleList. zipDouble(DoubleIterable iterable)Returns aListIterableformed from thisDoubleListand anotherDoubleListby combining corresponding elements in pairs.default ImmutableList<DoubleDoublePair>ImmutableDoubleList. zipDouble(DoubleIterable iterable)Returns anImmutableListformed from thisImmutableDoubleListand anotherDoubleListby combining corresponding elements in pairs.default MutableList<DoubleDoublePair>MutableDoubleList. zipDouble(DoubleIterable iterable)Returns aMutableListformed from thisMutableDoubleListand anotherDoubleListby 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 interfaceByteDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceFloatDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectDoubleMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortDoubleMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongDoubleMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableByteDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableFloatDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectDoubleMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortDoubleMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectDoubleMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortDoubleMapThis 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 ImmutableDoubleBooleanMapImmutableDoubleBooleanMap. 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.ImmutableDoubleByteMapImmutableDoubleByteMap. 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.ImmutableDoubleCharMapImmutableDoubleCharMap. 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.ImmutableDoubleDoubleMapImmutableDoubleDoubleMap. 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.ImmutableDoubleFloatMapImmutableDoubleFloatMap. 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.ImmutableDoubleIntMapImmutableDoubleIntMap. 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.ImmutableDoubleLongMapImmutableDoubleLongMap. 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.ImmutableDoubleShortMapImmutableDoubleShortMap. 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.MutableDoubleBooleanMapMutableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleByteMapMutableDoubleByteMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleCharMapMutableDoubleCharMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleDoubleMapMutableDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleFloatMapMutableDoubleFloatMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleIntMapMutableDoubleIntMap. withoutAllKeys(DoubleIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleLongMapMutableDoubleLongMap. 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.MutableDoubleShortMapMutableDoubleShortMap. 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 interfaceOrderedDoubleIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleDoubleIterableThis 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 interfaceDoubleSetThis file was automatically generated from template file primitiveSet.stg.interfaceImmutableDoubleSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceMutableDoubleSetThis 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 ImmutableDoubleSetImmutableDoubleSet. newWithAll(DoubleIterable elements)ImmutableDoubleSetImmutableDoubleSet. newWithoutAll(DoubleIterable elements)MutableDoubleSetMutableDoubleSet. withAll(DoubleIterable elements)MutableDoubleSetMutableDoubleSet. 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 interfaceDoubleStackThis file was automatically generated from template file primitiveStack.stg.interfaceImmutableDoubleStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceMutableDoubleStackThis 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 DoubleIterableUnmodifiableRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction)Method parameters in org.eclipse.collections.impl with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractBag. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleBagImmutableDoubleBagFactoryImpl. ofAll(DoubleIterable items)ImmutableDoubleBagImmutableDoubleBagFactoryImpl. 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 classDoubleHashBagDoubleHashBag is similar toHashBag, and is memory-optimized for double primitives.classSynchronizedDoubleBagA synchronized view of aMutableDoubleBag.classUnmodifiableDoubleBagThis 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 booleanDoubleHashBag. addAll(DoubleIterable source)static DoubleHashBagDoubleHashBag. newBag(DoubleIterable source)MutableDoubleBagMutableDoubleBagFactoryImpl. ofAll(DoubleIterable items)booleanDoubleHashBag. removeAll(DoubleIterable source)booleanDoubleHashBag. retainAll(DoubleIterable source)DoubleHashBagDoubleHashBag. withAll(DoubleIterable iterable)MutableDoubleBagMutableDoubleBagFactoryImpl. withAll(DoubleIterable items)SynchronizedDoubleBagSynchronizedDoubleBag. withAll(DoubleIterable elements)UnmodifiableDoubleBagUnmodifiableDoubleBag. withAll(DoubleIterable elements)DoubleHashBagDoubleHashBag. withoutAll(DoubleIterable iterable)SynchronizedDoubleBagSynchronizedDoubleBag. withoutAll(DoubleIterable elements)UnmodifiableDoubleBagUnmodifiableDoubleBag. 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 DoubleIterableUnmodifiableBiMap. 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 DoubleIterableAbstractSynchronizedRichIterable. collectDouble(DoubleFunction<? super T> doubleFunction)Method parameters in org.eclipse.collections.impl.collection with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractSynchronizedRichIterable. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RAbstractMultiReaderMutableCollection. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target)<R extends MutableDoubleCollection>
RAbstractUnmodifiableMutableCollection. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement DoubleIterable Modifier and Type Class Description classAbstractSynchronizedDoubleCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableDoubleCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedDoubleCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableDoubleCollectionThis 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 booleanAbstractSynchronizedDoubleCollection. addAll(DoubleIterable source)booleanAbstractUnmodifiableDoubleCollection. addAll(DoubleIterable source)booleanAbstractSynchronizedDoubleCollection. containsAll(DoubleIterable source)booleanAbstractUnmodifiableDoubleCollection. containsAll(DoubleIterable source)booleanAbstractSynchronizedDoubleCollection. removeAll(DoubleIterable source)booleanAbstractUnmodifiableDoubleCollection. removeAll(DoubleIterable source)booleanAbstractSynchronizedDoubleCollection. retainAll(DoubleIterable source)booleanAbstractUnmodifiableDoubleCollection. retainAll(DoubleIterable source)MutableDoubleCollectionAbstractSynchronizedDoubleCollection. withAll(DoubleIterable elements)MutableDoubleCollectionAbstractUnmodifiableDoubleCollection. withAll(DoubleIterable elements)MutableDoubleCollectionAbstractSynchronizedDoubleCollection. withoutAll(DoubleIterable elements)MutableDoubleCollectionAbstractUnmodifiableDoubleCollection. 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 classAbstractLazyDoubleIterableThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classCollectBooleanToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectByteToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectCharToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectDoubleIterable<T>This file was automatically generated from template file collectPrimitiveIterable.stg.classCollectDoubleToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectFloatToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectIntToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectLongToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectShortToDoubleIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classLazyDoubleIterableAdapterThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classReverseDoubleIterableThis file was automatically generated from template file reversePrimitiveIterable.stg.classSelectDoubleIterableThis file was automatically generated from template file selectPrimitiveIterable.stg.classTapDoubleIterableThis file was automatically generated from template file tapPrimitiveIterable.stg.Methods in org.eclipse.collections.impl.lazy.primitive that return DoubleIterable Modifier and Type Method Description DoubleIterableChunkDoubleIterable.ChunkDoubleIterator. next()Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>AbstractLazyDoubleIterable. chunk(int size)Iterator<DoubleIterable>ChunkDoubleIterable. iterator()Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleIterable Modifier and Type Method Description booleanAbstractLazyDoubleIterable. containsAll(DoubleIterable source)booleanCollectDoubleIterable. containsAll(DoubleIterable source)booleanLazyDoubleIterableAdapter. containsAll(DoubleIterable source)booleanReverseDoubleIterable. containsAll(DoubleIterable source)booleanSelectDoubleIterable. containsAll(DoubleIterable source)Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type DoubleIterable Modifier and Type Method Description voidChunkDoubleIterable. each(Procedure<? super DoubleIterable> procedure) -
Uses of DoubleIterable in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleListImmutableDoubleListFactoryImpl. ofAll(DoubleIterable items)ImmutableDoubleListImmutableDoubleListFactoryImpl. withAll(DoubleIterable items) -
Uses of DoubleIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RFastList. flatCollectDouble(Function<? super T,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement DoubleIterable Modifier and Type Class Description classDoubleArrayListDoubleArrayList is similar toFastList, and is memory-optimized for double primitives.classSynchronizedDoubleListA synchronized view of aMutableDoubleList.classUnmodifiableDoubleListThis 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 booleanDoubleArrayList. addAll(DoubleIterable source)booleanDoubleArrayList. addAllAtIndex(int index, DoubleIterable source)booleanSynchronizedDoubleList. addAllAtIndex(int index, DoubleIterable source)booleanUnmodifiableDoubleList. addAllAtIndex(int index, DoubleIterable source)static DoubleArrayListDoubleArrayList. newList(DoubleIterable source)MutableDoubleListMutableDoubleListFactoryImpl. ofAll(DoubleIterable items)booleanDoubleArrayList. removeAll(DoubleIterable source)booleanDoubleArrayList. retainAll(DoubleIterable source)DoubleArrayListDoubleArrayList. withAll(DoubleIterable elements)MutableDoubleListMutableDoubleListFactoryImpl. withAll(DoubleIterable items)SynchronizedDoubleListSynchronizedDoubleList. withAll(DoubleIterable elements)UnmodifiableDoubleListUnmodifiableDoubleList. withAll(DoubleIterable elements)DoubleArrayListDoubleArrayList. withoutAll(DoubleIterable elements)SynchronizedDoubleListSynchronizedDoubleList. withoutAll(DoubleIterable elements)UnmodifiableDoubleListUnmodifiableDoubleList. 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 classAbstractImmutableObjectDoubleMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg. -
Uses of DoubleIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type DoubleIterable Modifier and Type Method Description <R extends MutableDoubleCollection>
RUnmodifiableMutableMap. flatCollectDouble(Function<? super V,? extends DoubleIterable> function, R target) -
Uses of DoubleIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement DoubleIterable Modifier and Type Class Description classAbstractMutableDoubleKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableDoubleValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.classByteDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classCharDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classDoubleDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classFloatDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classIntDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classLongDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classObjectDoubleHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.classObjectDoubleHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.classShortDoubleHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedByteDoubleMapA synchronized view of aMutableByteDoubleMap.classSynchronizedCharDoubleMapA synchronized view of aMutableCharDoubleMap.classSynchronizedDoubleDoubleMapA synchronized view of aMutableDoubleDoubleMap.classSynchronizedFloatDoubleMapA synchronized view of aMutableFloatDoubleMap.classSynchronizedIntDoubleMapA synchronized view of aMutableIntDoubleMap.classSynchronizedLongDoubleMapA synchronized view of aMutableLongDoubleMap.classSynchronizedObjectDoubleMap<K>A synchronized view of aMutableObjectDoubleMap.classSynchronizedShortDoubleMapA synchronized view of aMutableShortDoubleMap.classUnmodifiableByteDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableCharDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableDoubleDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableFloatDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableIntDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableLongDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableObjectDoubleMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classUnmodifiableShortDoubleMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>AbstractMutableDoubleKeySet. chunk(int size)RichIterable<DoubleIterable>AbstractMutableDoubleValuesMap. chunk(int size)RichIterable<DoubleIterable>ObjectDoubleHashMap. chunk(int size)RichIterable<DoubleIterable>ObjectDoubleHashMapWithHashingStrategy. chunk(int size)RichIterable<DoubleIterable>SynchronizedByteDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedCharDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedDoubleDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedFloatDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedIntDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedLongDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedObjectDoubleMap. chunk(int size)RichIterable<DoubleIterable>SynchronizedShortDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableByteDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableCharDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableDoubleDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableFloatDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableIntDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableLongDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableObjectDoubleMap. chunk(int size)RichIterable<DoubleIterable>UnmodifiableShortDoubleMap. chunk(int size)Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description booleanAbstractMutableDoubleKeySet. addAll(DoubleIterable source)booleanAbstractMutableDoubleKeySet. containsAll(DoubleIterable source)booleanAbstractMutableDoubleValuesMap. containsAll(DoubleIterable source)booleanObjectDoubleHashMap. containsAll(DoubleIterable source)booleanObjectDoubleHashMapWithHashingStrategy. containsAll(DoubleIterable source)booleanSynchronizedByteDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedCharDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedDoubleDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedFloatDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedIntDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedLongDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedObjectDoubleMap. containsAll(DoubleIterable source)booleanSynchronizedShortDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableByteDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableCharDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableDoubleDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableFloatDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableIntDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableLongDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableObjectDoubleMap. containsAll(DoubleIterable source)booleanUnmodifiableShortDoubleMap. containsAll(DoubleIterable source)booleanAbstractMutableDoubleKeySet. removeAll(DoubleIterable source)MutableDoubleSetAbstractMutableDoubleKeySet. withAll(DoubleIterable elements)MutableDoubleSetAbstractMutableDoubleKeySet. withoutAll(DoubleIterable elements)DoubleBooleanHashMapDoubleBooleanHashMap. withoutAllKeys(DoubleIterable keys)DoubleByteHashMapDoubleByteHashMap. withoutAllKeys(DoubleIterable keys)DoubleCharHashMapDoubleCharHashMap. withoutAllKeys(DoubleIterable keys)DoubleDoubleHashMapDoubleDoubleHashMap. withoutAllKeys(DoubleIterable keys)DoubleFloatHashMapDoubleFloatHashMap. withoutAllKeys(DoubleIterable keys)DoubleIntHashMapDoubleIntHashMap. withoutAllKeys(DoubleIterable keys)DoubleLongHashMapDoubleLongHashMap. withoutAllKeys(DoubleIterable keys)MutableDoubleObjectMap<V>DoubleObjectHashMap. withoutAllKeys(DoubleIterable keys)DoubleShortHashMapDoubleShortHashMap. withoutAllKeys(DoubleIterable keys)MutableDoubleBooleanMapSynchronizedDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)MutableDoubleByteMapSynchronizedDoubleByteMap. withoutAllKeys(DoubleIterable keys)MutableDoubleCharMapSynchronizedDoubleCharMap. withoutAllKeys(DoubleIterable keys)MutableDoubleDoubleMapSynchronizedDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)MutableDoubleFloatMapSynchronizedDoubleFloatMap. withoutAllKeys(DoubleIterable keys)MutableDoubleIntMapSynchronizedDoubleIntMap. withoutAllKeys(DoubleIterable keys)MutableDoubleLongMapSynchronizedDoubleLongMap. withoutAllKeys(DoubleIterable keys)MutableDoubleObjectMap<V>SynchronizedDoubleObjectMap. withoutAllKeys(DoubleIterable keys)MutableDoubleShortMapSynchronizedDoubleShortMap. withoutAllKeys(DoubleIterable keys)MutableDoubleBooleanMapUnmodifiableDoubleBooleanMap. withoutAllKeys(DoubleIterable keys)MutableDoubleByteMapUnmodifiableDoubleByteMap. withoutAllKeys(DoubleIterable keys)MutableDoubleCharMapUnmodifiableDoubleCharMap. withoutAllKeys(DoubleIterable keys)MutableDoubleDoubleMapUnmodifiableDoubleDoubleMap. withoutAllKeys(DoubleIterable keys)MutableDoubleFloatMapUnmodifiableDoubleFloatMap. withoutAllKeys(DoubleIterable keys)MutableDoubleIntMapUnmodifiableDoubleIntMap. withoutAllKeys(DoubleIterable keys)MutableDoubleLongMapUnmodifiableDoubleLongMap. withoutAllKeys(DoubleIterable keys)MutableDoubleObjectMap<V>UnmodifiableDoubleObjectMap. withoutAllKeys(DoubleIterable keys)MutableDoubleShortMapUnmodifiableDoubleShortMap. 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 classAbstractDoubleIterableThis file was automatically generated from template file abstractPrimitiveIterable.stg.classSynchronizedDoubleIterableA synchronized view of a DoubleIterable.Methods in org.eclipse.collections.impl.primitive that return DoubleIterable Modifier and Type Method Description DoubleIterableSynchronizedDoubleIterable. reject(DoublePredicate predicate)DoubleIterableSynchronizedDoubleIterable. 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 booleanAbstractDoubleIterable. containsAll(DoubleIterable source)booleanSynchronizedDoubleIterable. containsAll(DoubleIterable source)static SynchronizedDoubleIterableSynchronizedDoubleIterable. of(DoubleIterable iterable)This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable.static SynchronizedDoubleIterableSynchronizedDoubleIterable. of(DoubleIterable iterable, Object lock)This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable. -
Uses of DoubleIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement DoubleIterable Modifier and Type Class Description classAbstractImmutableDoubleSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type DoubleIterable Modifier and Type Method Description RichIterable<DoubleIterable>AbstractImmutableDoubleSet. chunk(int size)Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleSetAbstractImmutableDoubleSet. newWithAll(DoubleIterable elements)ImmutableDoubleSetAbstractImmutableDoubleSet. newWithoutAll(DoubleIterable elements)ImmutableDoubleSetImmutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)ImmutableDoubleSetImmutableDoubleSetFactoryImpl. 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 classDoubleHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedDoubleSetA synchronized view of aMutableDoubleSet.classUnmodifiableDoubleSetThis 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 booleanDoubleHashSet. addAll(DoubleIterable source)static DoubleHashSetDoubleHashSet. newSet(DoubleIterable source)MutableDoubleSetMutableDoubleSetFactoryImpl. ofAll(DoubleIterable items)booleanDoubleHashSet. removeAll(DoubleIterable source)booleanDoubleHashSet. retainAll(DoubleIterable source)DoubleHashSetDoubleHashSet. withAll(DoubleIterable elements)MutableDoubleSetMutableDoubleSetFactoryImpl. withAll(DoubleIterable items)SynchronizedDoubleSetSynchronizedDoubleSet. withAll(DoubleIterable elements)UnmodifiableDoubleSetUnmodifiableDoubleSet. withAll(DoubleIterable elements)DoubleHashSetDoubleHashSet. withoutAll(DoubleIterable elements)SynchronizedDoubleSetSynchronizedDoubleSet. withoutAll(DoubleIterable elements)UnmodifiableDoubleSetUnmodifiableDoubleSet. withoutAll(DoubleIterable elements) -
Uses of DoubleIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement DoubleIterable Modifier and Type Class Description classAbstractDoubleSetThis file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of DoubleIterable in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type DoubleIterable Modifier and Type Method Description ImmutableDoubleStackImmutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactoryImpl. withAll(DoubleIterable items)ImmutableDoubleStackImmutableDoubleStackFactoryImpl. 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 classDoubleArrayStackDoubleArrayStack is similar toArrayStack, and is memory-optimized for double primitives.classSynchronizedDoubleStackA synchronized view of aMutableDoubleStack.classUnmodifiableDoubleStackThis 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 booleanSynchronizedDoubleStack. containsAll(DoubleIterable source)booleanUnmodifiableDoubleStack. containsAll(DoubleIterable source)static DoubleArrayStackDoubleArrayStack. newStack(DoubleIterable items)static DoubleArrayStackDoubleArrayStack. newStackFromTopToBottom(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactoryImpl. ofAll(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactoryImpl. ofAllReversed(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactoryImpl. withAll(DoubleIterable items)MutableDoubleStackMutableDoubleStackFactoryImpl. 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 classAbstractDoubleStackThis 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 booleanAbstractDoubleStack. 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 booleanDoubleIterableIterate. allSatisfy(DoubleIterable iterable, DoublePredicate predicate)static booleanDoubleIterableIterate. anySatisfy(DoubleIterable iterable, DoublePredicate predicate)static voidDoubleIterableIterate. 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 intDoubleIterableIterate. count(DoubleIterable iterable, DoublePredicate predicate)static doubleDoubleIterableIterate. detectIfNone(DoubleIterable iterable, DoublePredicate predicate, double ifNone)static voidDoubleIterableIterate. forEach(DoubleIterable iterable, DoubleProcedure procedure)static <T> TDoubleIterableIterate. injectInto(DoubleIterable iterable, T injectedValue, ObjectDoubleToObjectFunction<? super T,? extends T> function)static booleanDoubleIterableIterate. isEmpty(DoubleIterable iterable)static doubleDoubleIterableIterate. max(DoubleIterable iterable)static doubleDoubleIterableIterate. maxIfEmpty(DoubleIterable iterable, double ifEmpty)static doubleDoubleIterableIterate. min(DoubleIterable iterable)static doubleDoubleIterableIterate. minIfEmpty(DoubleIterable iterable, double ifEmpty)static booleanDoubleIterableIterate. noneSatisfy(DoubleIterable iterable, DoublePredicate predicate)static booleanDoubleIterableIterate. notEmpty(DoubleIterable iterable)static <R extends MutableDoubleCollection>
RDoubleIterableIterate. reject(DoubleIterable iterable, DoublePredicate predicate, R targetCollection)static <R extends MutableDoubleCollection>
RDoubleIterableIterate. select(DoubleIterable iterable, DoublePredicate predicate, R targetCollection)static doubleDoubleIterableIterate. 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 LazyDoubleIterableLazyDoubleIterate. 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 LazyDoubleIterableLazyDoubleIterate. select(DoubleIterable iterable, DoublePredicate predicate)Creates a deferred filtering double iterable for the specified double iterable.static LazyDoubleIterableLazyDoubleIterate. tap(DoubleIterable iterable, DoubleProcedure procedure)Creates a deferred tap iterable for the specified iterable.