Uses of Class
org.pcollections.ConsPStack
-
-
Uses of ConsPStack in org.pcollections
Fields in org.pcollections declared as ConsPStack Modifier and Type Field Description private static ConsPStack<java.lang.Object>
ConsPStack. EMPTY
private ConsPStack<E>
ConsPStack. rest
Methods in org.pcollections that return ConsPStack Modifier and Type Method Description static <E> ConsPStack<E>
ConsPStack. empty()
static <E> ConsPStack<E>
ConsPStack. from(java.util.Collection<? extends E> list)
private static <E> ConsPStack<E>
ConsPStack. from(java.util.Iterator<? extends E> i)
ConsPStack<E>
ConsPStack. minus(int i)
ConsPStack<E>
ConsPStack. minus(java.lang.Object e)
ConsPStack<E>
ConsPStack. minusAll(java.util.Collection<?> list)
ConsPStack<E>
ConsPStack. plus(int i, E e)
ConsPStack<E>
ConsPStack. plus(E e)
ConsPStack<E>
ConsPStack. plusAll(int i, java.util.Collection<? extends E> list)
ConsPStack<E>
ConsPStack. plusAll(java.util.Collection<? extends E> list)
static <E> ConsPStack<E>
ConsPStack. singleton(E e)
ConsPStack<E>
ConsPStack. subList(int start)
ConsPStack<E>
ConsPStack. subList(int start, int end)
ConsPStack<E>
ConsPStack. with(int i, E e)
Constructors in org.pcollections with parameters of type ConsPStack Constructor Description ConsPStack(E first, ConsPStack<E> rest)
-