Interface ImmutableDoubleList
-
- All Superinterfaces:
DoubleIterable
,DoubleList
,ImmutableDoubleCollection
,OrderedDoubleIterable
,PrimitiveIterable
,ReversibleDoubleIterable
- All Known Implementing Classes:
ImmutableDoubleArrayList
,ImmutableDoubleEmptyList
,ImmutableDoubleSingletonList
public interface ImmutableDoubleList extends ImmutableDoubleCollection, DoubleList
This file was automatically generated from template file immutablePrimitiveList.stg.- Since:
- 3.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <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.ImmutableDoubleList
distinct()
ImmutableDoubleList
newWith(double element)
ImmutableDoubleList
newWithAll(DoubleIterable elements)
ImmutableDoubleList
newWithout(double element)
ImmutableDoubleList
newWithoutAll(DoubleIterable elements)
ImmutableDoubleList
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.ImmutableDoubleList
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.ImmutableDoubleList
subList(int fromIndex, int toIndex)
default ImmutableDoubleList
tap(DoubleProcedure procedure)
ImmutableDoubleList
toReversed()
default <T> ImmutableList<DoubleObjectPair<T>>
zip(java.lang.Iterable<T> iterable)
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 Detail
-
select
ImmutableDoubleList select(DoublePredicate predicate)
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
ImmutableDoubleList reject(DoublePredicate predicate)
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
default ImmutableDoubleList tap(DoubleProcedure procedure)
- Specified by:
tap
in interfaceDoubleIterable
- Specified by:
tap
in interfaceDoubleList
- Specified by:
tap
in interfaceImmutableDoubleCollection
- Since:
- 9.0.
-
selectWithIndex
default ImmutableDoubleList selectWithIndex(DoubleIntPredicate predicate)
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
default ImmutableDoubleList rejectWithIndex(DoubleIntPredicate predicate)
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
<V> ImmutableList<V> collect(DoubleToObjectFunction<? extends V> function)
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
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.- Specified by:
collectWithIndex
in interfaceDoubleList
- Specified by:
collectWithIndex
in interfaceOrderedDoubleIterable
- Specified by:
collectWithIndex
in interfaceReversibleDoubleIterable
- Since:
- 9.1.
-
newWith
ImmutableDoubleList newWith(double element)
- Specified by:
newWith
in interfaceImmutableDoubleCollection
-
newWithout
ImmutableDoubleList newWithout(double element)
- Specified by:
newWithout
in interfaceImmutableDoubleCollection
-
newWithAll
ImmutableDoubleList newWithAll(DoubleIterable elements)
- Specified by:
newWithAll
in interfaceImmutableDoubleCollection
-
newWithoutAll
ImmutableDoubleList newWithoutAll(DoubleIterable elements)
- 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
ImmutableDoubleList subList(int fromIndex, int toIndex)
- Specified by:
subList
in interfaceDoubleList
- See Also:
List.subList(int fromIndex, int toIndex)
-
zipDouble
default ImmutableList<DoubleDoublePair> zipDouble(DoubleIterable iterable)
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
default <T> ImmutableList<DoubleObjectPair<T>> zip(java.lang.Iterable<T> iterable)
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.
-
-