Interface ImmutableDoubleList
- All Superinterfaces:
DoubleIterable
,DoubleList
,ImmutableDoubleCollection
,OrderedDoubleIterable
,PrimitiveIterable
,ReversibleDoubleIterable
This file was automatically generated from template file immutablePrimitiveList.stg.
- Since:
- 3.0.
-
Method Summary
Modifier and TypeMethodDescription<V> ImmutableList<V>
collect
(DoubleToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.default <V> ImmutableList<V>
collectWithIndex
(DoubleIntToObjectFunction<? extends V> function) Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.distinct()
newWith
(double element) newWithAll
(DoubleIterable elements) newWithout
(double element) newWithoutAll
(DoubleIterable elements) reject
(DoublePredicate predicate) Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.default ImmutableDoubleList
rejectWithIndex
(DoubleIntPredicate predicate) Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.select
(DoublePredicate predicate) Returns a new DoubleIterable with all of the elements in the DoubleIterable that return true for the specified predicate.default ImmutableDoubleList
selectWithIndex
(DoubleIntPredicate predicate) Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.subList
(int fromIndex, int toIndex) default ImmutableDoubleList
tap
(DoubleProcedure procedure) default <T> ImmutableList<DoubleObjectPair<T>>
Returns anImmutableList
formed from thisImmutableDoubleList
and aListIterable
by combining corresponding elements in pairs.default ImmutableList<DoubleDoublePair>
zipDouble
(DoubleIterable iterable) Returns anImmutableList
formed from thisImmutableDoubleList
and anotherDoubleList
by combining corresponding elements in pairs.Methods inherited from interface org.eclipse.collections.api.DoubleIterable
allSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, count, detectIfNone, doubleIterator, each, flatCollect, forEach, injectInto, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
Methods inherited from interface org.eclipse.collections.api.list.primitive.DoubleList
binarySearch, dotProduct, equals, forEachInBoth, get, hashCode, lastIndexOf, primitiveParallelStream, primitiveStream, spliterator, toImmutable
Methods inherited from interface org.eclipse.collections.api.ordered.primitive.OrderedDoubleIterable
collectWithIndex, forEachWithIndex, getFirst, indexOf, rejectWithIndex, selectWithIndex
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
Methods inherited from interface org.eclipse.collections.api.ordered.primitive.ReversibleDoubleIterable
asReversed, getLast, injectIntoWithIndex
-
Method Details
-
select
Description copied from interface:DoubleIterable
Returns a new DoubleIterable with all of the elements in the DoubleIterable that return true for the specified predicate.- Specified by:
select
in interfaceDoubleIterable
- Specified by:
select
in interfaceDoubleList
- Specified by:
select
in interfaceImmutableDoubleCollection
- Specified by:
select
in interfaceOrderedDoubleIterable
- Specified by:
select
in interfaceReversibleDoubleIterable
-
reject
Description copied from interface:DoubleIterable
Returns a new DoubleIterable with all of the elements in the DoubleIterable that return false for the specified predicate.- Specified by:
reject
in interfaceDoubleIterable
- Specified by:
reject
in interfaceDoubleList
- Specified by:
reject
in interfaceImmutableDoubleCollection
- Specified by:
reject
in interfaceOrderedDoubleIterable
- Specified by:
reject
in interfaceReversibleDoubleIterable
-
tap
- Specified by:
tap
in interfaceDoubleIterable
- Specified by:
tap
in interfaceDoubleList
- Specified by:
tap
in interfaceImmutableDoubleCollection
- Since:
- 9.0.
-
selectWithIndex
Returns a new ImmutableDoubleList including all elements with corresponding indexes matching the specified predicate.- Specified by:
selectWithIndex
in interfaceDoubleList
- Specified by:
selectWithIndex
in interfaceOrderedDoubleIterable
- Specified by:
selectWithIndex
in interfaceReversibleDoubleIterable
- Since:
- 11.1.
-
rejectWithIndex
Returns a new ImmutableDoubleList excluding all elements with corresponding indexes matching the specified predicate.- Specified by:
rejectWithIndex
in interfaceDoubleList
- Specified by:
rejectWithIndex
in interfaceOrderedDoubleIterable
- Specified by:
rejectWithIndex
in interfaceReversibleDoubleIterable
- Since:
- 11.1.
-
collect
Description copied from interface:DoubleIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceDoubleIterable
- Specified by:
collect
in interfaceDoubleList
- Specified by:
collect
in interfaceImmutableDoubleCollection
- Specified by:
collect
in interfaceOrderedDoubleIterable
- Specified by:
collect
in interfaceReversibleDoubleIterable
-
collectWithIndex
Returns a new ImmutableList using results obtained by applying the specified function to each element and its corresponding index.- Specified by:
collectWithIndex
in interfaceDoubleList
- Specified by:
collectWithIndex
in interfaceOrderedDoubleIterable
- Specified by:
collectWithIndex
in interfaceReversibleDoubleIterable
- Since:
- 9.1.
-
newWith
- Specified by:
newWith
in interfaceImmutableDoubleCollection
-
newWithout
- Specified by:
newWithout
in interfaceImmutableDoubleCollection
-
newWithAll
- Specified by:
newWithAll
in interfaceImmutableDoubleCollection
-
newWithoutAll
- Specified by:
newWithoutAll
in interfaceImmutableDoubleCollection
-
toReversed
ImmutableDoubleList toReversed()- Specified by:
toReversed
in interfaceDoubleList
- Specified by:
toReversed
in interfaceReversibleDoubleIterable
-
distinct
ImmutableDoubleList distinct()- Specified by:
distinct
in interfaceDoubleList
- Specified by:
distinct
in interfaceReversibleDoubleIterable
- Since:
- 6.0.
-
subList
- Specified by:
subList
in interfaceDoubleList
- See Also:
-
zipDouble
Returns anImmutableList
formed from thisImmutableDoubleList
and anotherDoubleList
by combining corresponding elements in pairs. If one of the twoDoubleList
s is longer than the other, its remaining elements are ignored.- Specified by:
zipDouble
in interfaceDoubleList
- Since:
- 9.1.
-
zip
Returns anImmutableList
formed from thisImmutableDoubleList
and aListIterable
by combining corresponding elements in pairs. If one of the two Lists is longer than the other, its remaining elements are ignored.- Specified by:
zip
in interfaceDoubleList
- Since:
- 9.1.
-