Uses of Interface
org.pcollections.PStack
-
-
Uses of PStack in org.pcollections
Classes in org.pcollections that implement PStack Modifier and Type Class Description class
ConsPStack<E>
A simple persistent stack.Fields in org.pcollections declared as PStack Modifier and Type Field Description private PStack<E>
AmortizedPQueue. back
private PStack<E>
AmortizedPQueue. front
private PStack<IntTree<V>>
IntTree.EntryIterator. stack
Methods in org.pcollections that return PStack Modifier and Type Method Description PStack<E>
PStack. minus(int i)
PStack<E>
PStack. minus(java.lang.Object e)
PStack<E>
PStack. minusAll(java.util.Collection<?> list)
PStack<E>
PStack. plus(int i, E e)
PStack<E>
PStack. plus(E e)
Returns a stack consisting of the elements of this with e prepended.PStack<E>
PStack. plusAll(int i, java.util.Collection<? extends E> list)
PStack<E>
PStack. plusAll(java.util.Collection<? extends E> list)
Returns a stack consisting of the elements of this with list prepended in reverse.static <E> PStack<E>
Empty. stack()
PStack<E>
PStack. subList(int start)
PStack<E>
PStack. subList(int start, int end)
PStack<E>
PStack. with(int i, E e)
Constructors in org.pcollections with parameters of type PStack Constructor Description AmortizedPQueue(PStack<E> front, PStack<E> back)
-