Uses of Class
org.eclipse.collections.impl.stack.mutable.ArrayStack
-
Packages that use ArrayStack Package Description org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface. -
-
Uses of ArrayStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return ArrayStack Modifier and Type Method Description <V> ArrayStack<V>ArrayStack. collect(Function<? super T,? extends V> function)<V> ArrayStack<V>ArrayStack. collectIf(Predicate<? super T> predicate, Function<? super T,? extends V> function)<P,V>
ArrayStack<V>ArrayStack. collectWith(Function2<? super T,? super P,? extends V> function, P parameter)<V> ArrayStack<V>ArrayStack. flatCollect(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(Predicate<? super T> predicate)<P> ArrayStack<T>ArrayStack. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)ArrayStack<T>ArrayStack. select(Predicate<? super T> predicate)<S> ArrayStack<S>ArrayStack. selectInstancesOf(java.lang.Class<S> clazz)<P> ArrayStack<T>ArrayStack. selectWith(Predicate2<? super T,? super P> predicate, P parameter)ArrayStack<T>ArrayStack. tap(Procedure<? super T> procedure)<S> ArrayStack<Pair<T,S>>ArrayStack. zip(java.lang.Iterable<S> that)ArrayStack<Pair<T,java.lang.Integer>>ArrayStack. zipWithIndex()
-