Uses of Interface
org.pcollections.PSequence
-
-
Uses of PSequence in org.pcollections
Subinterfaces of PSequence in org.pcollections Modifier and Type Interface Description interface
PStack<E>
An immutable, persistent stack.interface
PVector<E>
An immutable, persistent list.Classes in org.pcollections that implement PSequence Modifier and Type Class Description class
ConsPStack<E>
A simple persistent stack.class
TreePVector<E>
A persistent vector of elements.Fields in org.pcollections declared as PSequence Modifier and Type Field Description private PSequence<E>
HashPMap.SequenceIterator. seq
Fields in org.pcollections with type parameters of type PSequence Modifier and Type Field Description private java.util.Iterator<PSequence<E>>
HashPMap.SequenceIterator. i
private PMap<java.lang.Integer,PSequence<java.util.Map.Entry<K,V>>>
HashPMap. intMap
Methods in org.pcollections that return PSequence Modifier and Type Method Description private PSequence<java.util.Map.Entry<K,V>>
HashPMap. getEntries(int hash)
PSequence<E>
PSequence. minus(int i)
PSequence<E>
PSequence. minus(java.lang.Object e)
Returns a sequence consisting of the elements of this without the first occurrence of e.PSequence<E>
PSequence. minusAll(java.util.Collection<?> list)
PSequence<E>
PSequence. plus(int i, E e)
PSequence<E>
PSequence. plus(E e)
PSequence<E>
PSequence. plusAll(int i, java.util.Collection<? extends E> list)
PSequence<E>
PSequence. plusAll(java.util.Collection<? extends E> list)
PSequence<E>
PSequence. subList(int start, int end)
PSequence<E>
PSequence. with(int i, E e)
Methods in org.pcollections with parameters of type PSequence Modifier and Type Method Description private static <K,V>
intHashPMap. keyIndexIn(PSequence<java.util.Map.Entry<K,V>> entries, java.lang.Object key)
Method parameters in org.pcollections with type arguments of type PSequence Modifier and Type Method Description static <K,V>
HashPMap<K,V>HashPMap. empty(PMap<java.lang.Integer,PSequence<java.util.Map.Entry<K,V>>> intMap)
Constructor parameters in org.pcollections with type arguments of type PSequence Constructor Description HashPMap(PMap<java.lang.Integer,PSequence<java.util.Map.Entry<K,V>>> intMap, int size)
SequenceIterator(java.util.Iterator<PSequence<E>> i)
-