public interface DoubleStack extends OrderedDoubleIterable
| Modifier and Type | Method and Description |
|---|---|
<V> StackIterable<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> StackIterable<V> |
collectWithIndex(DoubleIntToObjectFunction<? extends V> function)
Returns a new StackIterable using results obtained by applying the specified function to each element
and its corresponding index.
|
boolean |
equals(Object o)
Follows the same general contract as
StackIterable.equals(Object). |
int |
hashCode()
Follows the same general contract as
StackIterable.hashCode(). |
double |
peek()
Returns the top of the stack.
|
DoubleList |
peek(int count)
Returns DoubleList of the number of elements specified by the count, beginning with the top of the stack.
|
double |
peekAt(int index)
Returns the element at the specified index.
|
DoubleStack |
reject(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return false for the specified predicate.
|
DoubleStack |
select(DoublePredicate predicate)
Returns a new DoubleIterable with all of the elements in the DoubleIterable that
return true for the specified predicate.
|
default DoubleStack |
tap(DoubleProcedure procedure) |
ImmutableDoubleStack |
toImmutable() |
collectWithIndex, forEachWithIndex, getFirst, indexOf, injectIntoWithIndexallSatisfy, anySatisfy, asLazy, average, averageIfEmpty, chunk, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, medianIfEmpty, min, minIfEmpty, noneSatisfy, reduce, reduceIfEmpty, reject, select, sum, summaryStatistics, toArray, toArray, toBag, toList, toSet, toSortedArray, toSortedListappendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toStringdouble peek()
DoubleList peek(int count)
double peekAt(int index)
index - the location to peek intoDoubleStack select(DoublePredicate predicate)
DoubleIterableselect in interface DoubleIterableselect in interface OrderedDoubleIterableDoubleStack reject(DoublePredicate predicate)
DoubleIterablereject in interface DoubleIterablereject in interface OrderedDoubleIterabledefault DoubleStack tap(DoubleProcedure procedure)
tap in interface DoubleIterable<V> StackIterable<V> collect(DoubleToObjectFunction<? extends V> function)
DoubleIterablecollect in interface DoubleIterablecollect in interface OrderedDoubleIterabledefault <V> StackIterable<V> collectWithIndex(DoubleIntToObjectFunction<? extends V> function)
collectWithIndex in interface OrderedDoubleIterableboolean equals(Object o)
StackIterable.equals(Object).int hashCode()
StackIterable.hashCode().ImmutableDoubleStack toImmutable()
Copyright © 2004–2020. All rights reserved.