| Package | Description |
|---|---|
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
| Modifier and Type | Method and Description |
|---|---|
<V> ArrayStack<V> |
ArrayStack.collect(org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<V> ArrayStack<V> |
ArrayStack.collectIf(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.function.Function<? super T,? extends V> function) |
<P,V> ArrayStack<V> |
ArrayStack.collectWith(org.eclipse.collections.api.block.function.Function2<? super T,? super P,? extends V> function,
P parameter) |
<V> ArrayStack<V> |
ArrayStack.flatCollect(org.eclipse.collections.api.block.function.Function<? super T,? extends Iterable<V>> function) |
static <T> ArrayStack<T> |
ArrayStack.newStack() |
static <T> ArrayStack<T> |
ArrayStack.newStack(Iterable<? extends T> items) |
static <T> ArrayStack<T> |
ArrayStack.newStackFromTopToBottom(Iterable<? extends T> items) |
static <T> ArrayStack<T> |
ArrayStack.newStackFromTopToBottom(T... items) |
static <T> ArrayStack<T> |
ArrayStack.newStackWith(T... items) |
ArrayStack<T> |
ArrayStack.reject(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<P> ArrayStack<T> |
ArrayStack.rejectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
ArrayStack<T> |
ArrayStack.select(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> ArrayStack<S> |
ArrayStack.selectInstancesOf(Class<S> clazz) |
<P> ArrayStack<T> |
ArrayStack.selectWith(org.eclipse.collections.api.block.predicate.Predicate2<? super T,? super P> predicate,
P parameter) |
ArrayStack<T> |
ArrayStack.tap(org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
<S> ArrayStack<org.eclipse.collections.api.tuple.Pair<T,S>> |
ArrayStack.zip(Iterable<S> that) |
ArrayStack<org.eclipse.collections.api.tuple.Pair<T,Integer>> |
ArrayStack.zipWithIndex() |
Copyright © 2004–2018. All rights reserved.