<V> ArrayStack<V> |
ArrayStack.collect(com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> ArrayStack<V> |
ArrayStack.collectIf(com.gs.collections.api.block.predicate.Predicate<? super T> predicate,
com.gs.collections.api.block.function.Function<? super T,? extends V> function) |
<V> ArrayStack<V> |
ArrayStack.flatCollect(com.gs.collections.api.block.function.Function<? super T,? extends java.lang.Iterable<V>> function) |
static <T> ArrayStack<T> |
ArrayStack.newStack() |
static <T> ArrayStack<T> |
ArrayStack.newStack(java.lang.Iterable<? extends T> items) |
static <T> ArrayStack<T> |
ArrayStack.newStackFromTopToBottom(java.lang.Iterable<? extends T> items) |
static <T> ArrayStack<T> |
ArrayStack.newStackFromTopToBottom(T... items) |
static <T> ArrayStack<T> |
ArrayStack.newStackWith(T... items) |
ArrayStack<T> |
ArrayStack.reject(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
ArrayStack<T> |
ArrayStack.select(com.gs.collections.api.block.predicate.Predicate<? super T> predicate) |
<S> ArrayStack<S> |
ArrayStack.selectInstancesOf(java.lang.Class<S> clazz) |
<S> ArrayStack<com.gs.collections.api.tuple.Pair<T,S>> |
ArrayStack.zip(java.lang.Iterable<S> that) |
ArrayStack<com.gs.collections.api.tuple.Pair<T,java.lang.Integer>> |
ArrayStack.zipWithIndex() |