DoubleIterable, OrderedDoubleIterable, PrimitiveIterableImmutableDoubleStack, MutableDoubleStackAbstractDoubleStack, DoubleArrayStack, SynchronizedDoubleStack, UnmodifiableDoubleStackpublic interface DoubleStack extends OrderedDoubleIterable
| Modifier and Type | Method | 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.
|
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.
|
ImmutableDoubleStack |
toImmutable() |
allSatisfy, anySatisfy, asLazy, average, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, contains, containsAll, containsAll, count, detectIfNone, doubleIterator, each, flatCollect, forEach, injectInto, max, maxIfEmpty, median, min, minIfEmpty, noneSatisfy, reject, select, sum, summaryStatistics, toArray, toBag, toList, toSet, toSortedArray, toSortedListforEachWithIndex, getFirst, indexOf, injectIntoWithIndexappendString, 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 OrderedDoubleIterable<V> StackIterable<V> collect(DoubleToObjectFunction<? extends V> function)
DoubleIterablecollect in interface DoubleIterablecollect in interface OrderedDoubleIterableboolean equals(Object o)
StackIterable.equals(Object).int hashCode()
StackIterable.hashCode().ImmutableDoubleStack toImmutable()
Copyright © 2004–2017. All rights reserved.