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.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.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.collection | |
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.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.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
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.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 |
Modifier and Type | Interface | Description |
---|---|---|
interface |
LazyDoubleIterable |
This file was automatically generated from template file lazyPrimitiveIterable.stg.
|
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
RichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
Returns a new primitive
double iterable with the results of applying the specified function on each element
of the source collection. |
DoubleIterable |
DoubleIterable.reject(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return false for the specified predicate.
|
DoubleIterable |
DoubleIterable.select(DoublePredicate predicate) |
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return true for the specified predicate.
|
default DoubleIterable |
DoubleIterable.tap(DoubleProcedure procedure) |
Modifier and Type | Method | Description |
---|---|---|
default RichIterable<DoubleIterable> |
DoubleIterable.chunk(int size) |
Partitions elements in fixed size chunks.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
DoubleIterable.containsAll(DoubleIterable source) |
Returns true if the all of the values specified in the source DoubleIterable are contained
in the DoubleIterable, and false if they are not.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
DoubleBag |
This file was automatically generated from template file primitiveBag.stg.
|
interface |
ImmutableDoubleBag |
This file was automatically generated from template file immutablePrimitiveBag.stg.
|
interface |
MutableDoubleBag |
This file was automatically generated from template file mutablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleBag |
ImmutableDoubleBag.newWithAll(DoubleIterable elements) |
|
ImmutableDoubleBag |
ImmutableDoubleBag.newWithoutAll(DoubleIterable elements) |
|
MutableDoubleBag |
MutableDoubleBag.withAll(DoubleIterable elements) |
|
MutableDoubleBag |
MutableDoubleBag.withoutAll(DoubleIterable elements) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
ImmutableDoubleCollection |
This file was automatically generated from template file immutablePrimitiveCollection.stg.
|
interface |
MutableDoubleCollection |
This file was automatically generated from template file mutablePrimitiveCollection.stg.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
MutableDoubleCollection.addAll(DoubleIterable source) |
|
ImmutableDoubleCollection |
ImmutableDoubleCollection.newWithAll(DoubleIterable elements) |
|
ImmutableDoubleCollection |
ImmutableDoubleCollection.newWithoutAll(DoubleIterable elements) |
|
boolean |
MutableDoubleCollection.removeAll(DoubleIterable source) |
|
boolean |
MutableDoubleCollection.retainAll(DoubleIterable elements) |
|
MutableDoubleCollection |
MutableDoubleCollection.withAll(DoubleIterable elements) |
|
MutableDoubleCollection |
MutableDoubleCollection.withoutAll(DoubleIterable elements) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.ofAll(DoubleIterable items) |
|
MutableDoubleBag |
MutableDoubleBagFactory.ofAll(DoubleIterable items) |
|
ImmutableDoubleBag |
ImmutableDoubleBagFactory.withAll(DoubleIterable items) |
|
MutableDoubleBag |
MutableDoubleBagFactory.withAll(DoubleIterable items) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleList |
ImmutableDoubleListFactory.ofAll(DoubleIterable items) |
|
MutableDoubleList |
MutableDoubleListFactory.ofAll(DoubleIterable items) |
|
ImmutableDoubleList |
ImmutableDoubleListFactory.withAll(DoubleIterable items) |
|
MutableDoubleList |
MutableDoubleListFactory.withAll(DoubleIterable items) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleSet |
ImmutableDoubleSetFactory.ofAll(DoubleIterable items) |
|
MutableDoubleSet |
MutableDoubleSetFactory.ofAll(DoubleIterable items) |
|
ImmutableDoubleSet |
ImmutableDoubleSetFactory.withAll(DoubleIterable items) |
|
MutableDoubleSet |
MutableDoubleSetFactory.withAll(DoubleIterable items) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.ofAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAll(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.ofAllReversed(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.ofAllReversed(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.withAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAll(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactory.withAllReversed(DoubleIterable items) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
DoubleList |
This file was automatically generated from template file primitiveList.stg.
|
interface |
ImmutableDoubleList |
This file was automatically generated from template file immutablePrimitiveList.stg.
|
interface |
MutableDoubleList |
This file was automatically generated from template file mutablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
MutableDoubleList.addAllAtIndex(int index,
DoubleIterable source) |
|
ImmutableDoubleList |
ImmutableDoubleList.newWithAll(DoubleIterable elements) |
|
ImmutableDoubleList |
ImmutableDoubleList.newWithoutAll(DoubleIterable elements) |
|
MutableDoubleList |
MutableDoubleList.withAll(DoubleIterable elements) |
|
MutableDoubleList |
MutableDoubleList.withoutAll(DoubleIterable elements) |
|
default ListIterable<DoubleDoublePair> |
DoubleList.zipDouble(DoubleIterable iterable) |
Returns a
ListIterable formed from this DoubleList and another DoubleList by
combining corresponding elements in pairs. |
default ImmutableList<DoubleDoublePair> |
ImmutableDoubleList.zipDouble(DoubleIterable iterable) |
Returns an
ImmutableList formed from this ImmutableDoubleList and another DoubleList by
combining corresponding elements in pairs. |
default MutableList<DoubleDoublePair> |
MutableDoubleList.zipDouble(DoubleIterable iterable) |
Returns a
MutableList formed from this MutableDoubleList and another DoubleList by
combining corresponding elements in pairs. |
Modifier and Type | Interface | Description |
---|---|---|
interface |
ByteDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
CharDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
DoubleValuesMap |
This file was automatically generated from template file primitiveValuesMap.stg.
|
interface |
FloatDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
ImmutableByteDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableCharDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableDoubleDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableFloatDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableIntDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableLongDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
ImmutableObjectDoubleMap<K> |
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.
|
interface |
ImmutableShortDoubleMap |
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.
|
interface |
IntDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
LongDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
interface |
MutableByteDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableCharDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableDoubleValuesMap |
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.
|
interface |
MutableFloatDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableIntDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableLongDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
MutableObjectDoubleMap<K> |
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.
|
interface |
MutableShortDoubleMap |
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.
|
interface |
ObjectDoubleMap<K> |
This file was automatically generated from template file objectPrimitiveMap.stg.
|
interface |
ShortDoubleMap |
This file was automatically generated from template file primitivePrimitiveMap.stg.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
OrderedDoubleIterable |
This file was automatically generated from template file orderedPrimitiveIterable.stg.
|
interface |
ReversibleDoubleIterable |
This file was automatically generated from template file reversiblePrimitiveIterable.stg.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
DoubleSet |
This file was automatically generated from template file primitiveSet.stg.
|
interface |
ImmutableDoubleSet |
This file was automatically generated from template file immutablePrimitiveSet.stg.
|
interface |
MutableDoubleSet |
This file was automatically generated from template file mutablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleSet |
ImmutableDoubleSet.newWithAll(DoubleIterable elements) |
|
ImmutableDoubleSet |
ImmutableDoubleSet.newWithoutAll(DoubleIterable elements) |
|
MutableDoubleSet |
MutableDoubleSet.withAll(DoubleIterable elements) |
|
MutableDoubleSet |
MutableDoubleSet.withoutAll(DoubleIterable elements) |
Modifier and Type | Interface | Description |
---|---|---|
interface |
DoubleStack |
This file was automatically generated from template file primitiveStack.stg.
|
interface |
ImmutableDoubleStack |
This file was automatically generated from template file immutablePrimitiveStack.stg.
|
interface |
MutableDoubleStack |
This file was automatically generated from template file mutablePrimitiveStack.stg.
|
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
UnmodifiableRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleBag |
ImmutableDoubleBagFactoryImpl.ofAll(DoubleIterable items) |
|
ImmutableDoubleBag |
ImmutableDoubleBagFactoryImpl.withAll(DoubleIterable items) |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleHashBag |
DoubleHashBag is similar to
HashBag , and is memory-optimized for double primitives. |
class |
SynchronizedDoubleBag |
A synchronized view of a
MutableDoubleBag . |
class |
UnmodifiableDoubleBag |
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
DoubleHashBag.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
DoubleHashBag.addAll(DoubleIterable source) |
|
static DoubleHashBag |
DoubleHashBag.newBag(DoubleIterable source) |
|
MutableDoubleBag |
MutableDoubleBagFactoryImpl.ofAll(DoubleIterable items) |
|
boolean |
DoubleHashBag.removeAll(DoubleIterable source) |
|
boolean |
DoubleHashBag.retainAll(DoubleIterable source) |
|
DoubleHashBag |
DoubleHashBag.withAll(DoubleIterable iterable) |
|
MutableDoubleBag |
MutableDoubleBagFactoryImpl.withAll(DoubleIterable items) |
|
SynchronizedDoubleBag |
SynchronizedDoubleBag.withAll(DoubleIterable elements) |
|
UnmodifiableDoubleBag |
UnmodifiableDoubleBag.withAll(DoubleIterable elements) |
|
DoubleHashBag |
DoubleHashBag.withoutAll(DoubleIterable iterable) |
|
SynchronizedDoubleBag |
SynchronizedDoubleBag.withoutAll(DoubleIterable elements) |
|
UnmodifiableDoubleBag |
UnmodifiableDoubleBag.withoutAll(DoubleIterable elements) |
Constructor | Description |
---|---|
DoubleHashBag(DoubleIterable iterable) |
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
UnmodifiableBiMap.collectDouble(DoubleFunction<? super V> doubleFunction) |
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
AbstractSynchronizedRichIterable.collectDouble(DoubleFunction<? super T> doubleFunction) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractSynchronizedDoubleCollection |
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.
|
class |
AbstractUnmodifiableDoubleCollection |
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.
|
class |
SynchronizedDoubleCollection |
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.
|
class |
UnmodifiableDoubleCollection |
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
AbstractSynchronizedDoubleCollection.chunk(int size) |
|
RichIterable<DoubleIterable> |
AbstractUnmodifiableDoubleCollection.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractSynchronizedDoubleCollection.addAll(DoubleIterable source) |
|
boolean |
AbstractUnmodifiableDoubleCollection.addAll(DoubleIterable source) |
|
boolean |
AbstractSynchronizedDoubleCollection.containsAll(DoubleIterable source) |
|
boolean |
AbstractUnmodifiableDoubleCollection.containsAll(DoubleIterable source) |
|
boolean |
AbstractSynchronizedDoubleCollection.removeAll(DoubleIterable source) |
|
boolean |
AbstractUnmodifiableDoubleCollection.removeAll(DoubleIterable source) |
|
boolean |
AbstractSynchronizedDoubleCollection.retainAll(DoubleIterable source) |
|
boolean |
AbstractUnmodifiableDoubleCollection.retainAll(DoubleIterable source) |
|
MutableDoubleCollection |
AbstractSynchronizedDoubleCollection.withAll(DoubleIterable elements) |
|
MutableDoubleCollection |
AbstractUnmodifiableDoubleCollection.withAll(DoubleIterable elements) |
|
MutableDoubleCollection |
AbstractSynchronizedDoubleCollection.withoutAll(DoubleIterable elements) |
|
MutableDoubleCollection |
AbstractUnmodifiableDoubleCollection.withoutAll(DoubleIterable elements) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractLazyDoubleIterable |
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.
|
class |
CollectBooleanToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectByteToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectCharToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectDoubleIterable<T> |
This file was automatically generated from template file collectPrimitiveIterable.stg.
|
class |
CollectDoubleToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectFloatToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectIntToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectLongToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
CollectShortToDoubleIterable |
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.
|
class |
LazyDoubleIterableAdapter |
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.
|
class |
ReverseDoubleIterable |
This file was automatically generated from template file reversePrimitiveIterable.stg.
|
class |
SelectDoubleIterable |
This file was automatically generated from template file selectPrimitiveIterable.stg.
|
class |
TapDoubleIterable |
This file was automatically generated from template file tapPrimitiveIterable.stg.
|
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
ChunkDoubleIterable.ChunkDoubleIterator.next() |
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
AbstractLazyDoubleIterable.chunk(int size) |
|
Iterator<DoubleIterable> |
ChunkDoubleIterable.iterator() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractLazyDoubleIterable.containsAll(DoubleIterable source) |
|
boolean |
CollectDoubleIterable.containsAll(DoubleIterable source) |
|
boolean |
LazyDoubleIterableAdapter.containsAll(DoubleIterable source) |
|
boolean |
ReverseDoubleIterable.containsAll(DoubleIterable source) |
|
boolean |
SelectDoubleIterable.containsAll(DoubleIterable source) |
Modifier and Type | Method | Description |
---|---|---|
void |
ChunkDoubleIterable.each(Procedure<? super DoubleIterable> procedure) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleList |
ImmutableDoubleListFactoryImpl.ofAll(DoubleIterable items) |
|
ImmutableDoubleList |
ImmutableDoubleListFactoryImpl.withAll(DoubleIterable items) |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleArrayList |
DoubleArrayList is similar to
FastList , and is memory-optimized for double primitives. |
class |
SynchronizedDoubleList |
A synchronized view of a
MutableDoubleList . |
class |
UnmodifiableDoubleList |
This file was automatically generated from template file unmodifiablePrimitiveList.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
DoubleArrayList.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
DoubleArrayList.addAll(DoubleIterable source) |
|
boolean |
DoubleArrayList.addAllAtIndex(int index,
DoubleIterable source) |
|
boolean |
SynchronizedDoubleList.addAllAtIndex(int index,
DoubleIterable source) |
|
boolean |
UnmodifiableDoubleList.addAllAtIndex(int index,
DoubleIterable source) |
|
static DoubleArrayList |
DoubleArrayList.newList(DoubleIterable source) |
|
MutableDoubleList |
MutableDoubleListFactoryImpl.ofAll(DoubleIterable items) |
|
boolean |
DoubleArrayList.removeAll(DoubleIterable source) |
|
boolean |
DoubleArrayList.retainAll(DoubleIterable source) |
|
DoubleArrayList |
DoubleArrayList.withAll(DoubleIterable elements) |
|
MutableDoubleList |
MutableDoubleListFactoryImpl.withAll(DoubleIterable items) |
|
SynchronizedDoubleList |
SynchronizedDoubleList.withAll(DoubleIterable elements) |
|
UnmodifiableDoubleList |
UnmodifiableDoubleList.withAll(DoubleIterable elements) |
|
DoubleArrayList |
DoubleArrayList.withoutAll(DoubleIterable elements) |
|
SynchronizedDoubleList |
SynchronizedDoubleList.withoutAll(DoubleIterable elements) |
|
UnmodifiableDoubleList |
UnmodifiableDoubleList.withoutAll(DoubleIterable elements) |
|
MutableList<DoubleDoublePair> |
DoubleArrayList.zipDouble(DoubleIterable iterable) |
|
MutableList<DoubleDoublePair> |
SynchronizedDoubleList.zipDouble(DoubleIterable iterable) |
|
MutableList<DoubleDoublePair> |
UnmodifiableDoubleList.zipDouble(DoubleIterable iterable) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractImmutableObjectDoubleMap<V> |
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractMutableDoubleKeySet |
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.
|
class |
AbstractMutableDoubleValuesMap |
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.
|
class |
ByteDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
CharDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
DoubleDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
FloatDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
IntDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
LongDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
ObjectDoubleHashMap<K> |
This file was automatically generated from template file objectPrimitiveHashMap.stg.
|
class |
ObjectDoubleHashMapWithHashingStrategy<K> |
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.
|
class |
ShortDoubleHashMap |
This file was automatically generated from template file primitivePrimitiveHashMap.stg.
|
class |
SynchronizedByteDoubleMap |
A synchronized view of a
MutableByteDoubleMap . |
class |
SynchronizedCharDoubleMap |
A synchronized view of a
MutableCharDoubleMap . |
class |
SynchronizedDoubleDoubleMap |
A synchronized view of a
MutableDoubleDoubleMap . |
class |
SynchronizedFloatDoubleMap |
A synchronized view of a
MutableFloatDoubleMap . |
class |
SynchronizedIntDoubleMap |
A synchronized view of a
MutableIntDoubleMap . |
class |
SynchronizedLongDoubleMap |
A synchronized view of a
MutableLongDoubleMap . |
class |
SynchronizedObjectDoubleMap<K> |
A synchronized view of a
MutableObjectDoubleMap . |
class |
SynchronizedShortDoubleMap |
A synchronized view of a
MutableShortDoubleMap . |
class |
UnmodifiableByteDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableCharDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableDoubleDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableFloatDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableIntDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableLongDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
class |
UnmodifiableObjectDoubleMap<K> |
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.
|
class |
UnmodifiableShortDoubleMap |
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.
|
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) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractMutableDoubleKeySet.addAll(DoubleIterable source) |
|
boolean |
AbstractMutableDoubleKeySet.containsAll(DoubleIterable source) |
|
boolean |
AbstractMutableDoubleValuesMap.containsAll(DoubleIterable source) |
|
boolean |
ObjectDoubleHashMap.containsAll(DoubleIterable source) |
|
boolean |
ObjectDoubleHashMapWithHashingStrategy.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedByteDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedCharDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedDoubleDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedFloatDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedIntDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedLongDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedObjectDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedShortDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableByteDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableCharDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableDoubleDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableFloatDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableIntDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableLongDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableObjectDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableShortDoubleMap.containsAll(DoubleIterable source) |
|
boolean |
AbstractMutableDoubleKeySet.removeAll(DoubleIterable source) |
|
MutableDoubleSet |
AbstractMutableDoubleKeySet.withAll(DoubleIterable elements) |
|
MutableDoubleSet |
AbstractMutableDoubleKeySet.withoutAll(DoubleIterable elements) |
|
DoubleBooleanHashMap |
DoubleBooleanHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleByteHashMap |
DoubleByteHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleCharHashMap |
DoubleCharHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleDoubleHashMap |
DoubleDoubleHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleFloatHashMap |
DoubleFloatHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleIntHashMap |
DoubleIntHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleLongHashMap |
DoubleLongHashMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleObjectMap<V> |
DoubleObjectHashMap.withoutAllKeys(DoubleIterable keys) |
|
DoubleShortHashMap |
DoubleShortHashMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleBooleanMap |
SynchronizedDoubleBooleanMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleByteMap |
SynchronizedDoubleByteMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleCharMap |
SynchronizedDoubleCharMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleDoubleMap |
SynchronizedDoubleDoubleMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleFloatMap |
SynchronizedDoubleFloatMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleIntMap |
SynchronizedDoubleIntMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleLongMap |
SynchronizedDoubleLongMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleObjectMap<V> |
SynchronizedDoubleObjectMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleShortMap |
SynchronizedDoubleShortMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleBooleanMap |
UnmodifiableDoubleBooleanMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleByteMap |
UnmodifiableDoubleByteMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleCharMap |
UnmodifiableDoubleCharMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleDoubleMap |
UnmodifiableDoubleDoubleMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleFloatMap |
UnmodifiableDoubleFloatMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleIntMap |
UnmodifiableDoubleIntMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleLongMap |
UnmodifiableDoubleLongMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleObjectMap<V> |
UnmodifiableDoubleObjectMap.withoutAllKeys(DoubleIterable keys) |
|
MutableDoubleShortMap |
UnmodifiableDoubleShortMap.withoutAllKeys(DoubleIterable keys) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractDoubleIterable |
This file was automatically generated from template file abstractPrimitiveIterable.stg.
|
class |
SynchronizedDoubleIterable |
A synchronized view of a DoubleIterable.
|
Modifier and Type | Method | Description |
---|---|---|
DoubleIterable |
SynchronizedDoubleIterable.reject(DoublePredicate predicate) |
|
DoubleIterable |
SynchronizedDoubleIterable.select(DoublePredicate predicate) |
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
SynchronizedDoubleIterable.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractDoubleIterable.containsAll(DoubleIterable source) |
|
boolean |
SynchronizedDoubleIterable.containsAll(DoubleIterable source) |
|
static SynchronizedDoubleIterable |
SynchronizedDoubleIterable.of(DoubleIterable iterable) |
This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable.
|
static SynchronizedDoubleIterable |
SynchronizedDoubleIterable.of(DoubleIterable iterable,
Object lock) |
This method will take a DoubleIterable and wrap it directly in a SynchronizedDoubleIterable.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractImmutableDoubleSet |
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
AbstractImmutableDoubleSet.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleSet |
AbstractImmutableDoubleSet.newWithAll(DoubleIterable elements) |
|
ImmutableDoubleSet |
AbstractImmutableDoubleSet.newWithoutAll(DoubleIterable elements) |
|
ImmutableDoubleSet |
ImmutableDoubleSetFactoryImpl.ofAll(DoubleIterable items) |
|
ImmutableDoubleSet |
ImmutableDoubleSetFactoryImpl.withAll(DoubleIterable items) |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleHashSet |
This file was automatically generated from template file primitiveHashSet.stg.
|
class |
SynchronizedDoubleSet |
A synchronized view of a
MutableDoubleSet . |
class |
UnmodifiableDoubleSet |
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
DoubleHashSet.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
DoubleHashSet.addAll(DoubleIterable source) |
|
static DoubleHashSet |
DoubleHashSet.newSet(DoubleIterable source) |
|
MutableDoubleSet |
MutableDoubleSetFactoryImpl.ofAll(DoubleIterable items) |
|
boolean |
DoubleHashSet.removeAll(DoubleIterable source) |
|
boolean |
DoubleHashSet.retainAll(DoubleIterable source) |
|
DoubleHashSet |
DoubleHashSet.withAll(DoubleIterable elements) |
|
MutableDoubleSet |
MutableDoubleSetFactoryImpl.withAll(DoubleIterable items) |
|
SynchronizedDoubleSet |
SynchronizedDoubleSet.withAll(DoubleIterable elements) |
|
UnmodifiableDoubleSet |
UnmodifiableDoubleSet.withAll(DoubleIterable elements) |
|
DoubleHashSet |
DoubleHashSet.withoutAll(DoubleIterable elements) |
|
SynchronizedDoubleSet |
SynchronizedDoubleSet.withoutAll(DoubleIterable elements) |
|
UnmodifiableDoubleSet |
UnmodifiableDoubleSet.withoutAll(DoubleIterable elements) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractDoubleSet |
This file was automatically generated from template file abstractPrimitiveSet.stg.
|
Modifier and Type | Method | Description |
---|---|---|
ImmutableDoubleStack |
ImmutableDoubleStackFactoryImpl.ofAll(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactoryImpl.ofAllReversed(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactoryImpl.withAll(DoubleIterable items) |
|
ImmutableDoubleStack |
ImmutableDoubleStackFactoryImpl.withAllReversed(DoubleIterable items) |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleArrayStack |
DoubleArrayStack is similar to
ArrayStack , and is memory-optimized for double primitives. |
class |
SynchronizedDoubleStack |
A synchronized view of a
MutableDoubleStack . |
class |
UnmodifiableDoubleStack |
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
SynchronizedDoubleStack.chunk(int size) |
|
RichIterable<DoubleIterable> |
UnmodifiableDoubleStack.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
SynchronizedDoubleStack.containsAll(DoubleIterable source) |
|
boolean |
UnmodifiableDoubleStack.containsAll(DoubleIterable source) |
|
static DoubleArrayStack |
DoubleArrayStack.newStack(DoubleIterable items) |
|
static DoubleArrayStack |
DoubleArrayStack.newStackFromTopToBottom(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.ofAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.ofAllReversed(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAll(DoubleIterable items) |
|
MutableDoubleStack |
MutableDoubleStackFactoryImpl.withAllReversed(DoubleIterable items) |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractDoubleStack |
This file was automatically generated from template file abstractPrimitiveStack.stg.
|
Modifier and Type | Method | Description |
---|---|---|
RichIterable<DoubleIterable> |
AbstractDoubleStack.chunk(int size) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
AbstractDoubleStack.containsAll(DoubleIterable source) |
Modifier and Type | Method | Description |
---|---|---|
static boolean |
DoubleIterableIterate.allSatisfy(DoubleIterable iterable,
DoublePredicate predicate) |
|
static boolean |
DoubleIterableIterate.anySatisfy(DoubleIterable iterable,
DoublePredicate predicate) |
|
static void |
DoubleIterableIterate.appendString(DoubleIterable iterable,
Appendable appendable,
String start,
String separator,
String end) |
|
static <V,R extends Collection<V>> |
DoubleIterableIterate.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> |
DoubleIterableIterate.reject(DoubleIterable iterable,
DoublePredicate predicate,
R targetCollection) |
|
static <R extends MutableDoubleCollection> |
DoubleIterableIterate.select(DoubleIterable iterable,
DoublePredicate predicate,
R targetCollection) |
|
static double |
DoubleIterableIterate.sum(DoubleIterable iterable) |
Modifier and Type | Method | Description |
---|---|---|
static LazyDoubleIterable |
LazyDoubleIterate.adapt(DoubleIterable iterable) |
Creates a deferred double iterable for the specified double iterable.
|
static <V> LazyIterable<V> |
LazyDoubleIterate.collect(DoubleIterable iterable,
DoubleToObjectFunction<? extends V> function) |
Creates a deferred transforming double iterable for the specified double iterable.
|
static <V> LazyIterable<V> |
LazyDoubleIterate.collectIf(DoubleIterable iterable,
DoublePredicate predicate,
DoubleToObjectFunction<? extends V> function) |
Creates a deferred filtering and transforming double iterable for the specified double iterable.
|
static <V> LazyIterable<V> |
LazyDoubleIterate.flatCollect(DoubleIterable iterable,
DoubleToObjectFunction<? extends Iterable<V>> function) |
Creates a deferred transforming and flattening double iterable for the specified double iterable.
|
static LazyDoubleIterable |
LazyDoubleIterate.select(DoubleIterable iterable,
DoublePredicate predicate) |
Creates a deferred filtering double iterable for the specified double iterable.
|
static LazyDoubleIterable |
LazyDoubleIterate.tap(DoubleIterable iterable,
DoubleProcedure procedure) |
Creates a deferred tap iterable for the specified iterable.
|
Copyright © 2004–2019. All rights reserved.