Uses of Interface
org.javimmutable.collections.Sequence

Packages that use Sequence
org.javimmutable.collections   
org.javimmutable.collections.common   
org.javimmutable.collections.cursors   
org.javimmutable.collections.list   
 

Uses of Sequence in org.javimmutable.collections
 

Subinterfaces of Sequence in org.javimmutable.collections
 interface JImmutableStack<T>
          Interface for objects that store values in LIFO form.
 

Methods in org.javimmutable.collections that return Sequence
 Sequence<T> Sequence.getTail()
          Accesses the rest of the Sequence.
 

Uses of Sequence in org.javimmutable.collections.common
 

Classes in org.javimmutable.collections.common that implement Sequence
 class EmptySequence<T>
          Singleton Sequence implementation for an empty sequence.
 

Methods in org.javimmutable.collections.common that return Sequence
 Sequence<T> EmptySequence.getTail()
           
static
<T> Sequence<T>
EmptySequence.of()
           
 

Uses of Sequence in org.javimmutable.collections.cursors
 

Methods in org.javimmutable.collections.cursors with parameters of type Sequence
static
<T> Cursor<T>
SequenceCursor.of(Sequence<T> sequence)
           
 

Uses of Sequence in org.javimmutable.collections.list
 

Classes in org.javimmutable.collections.list that implement Sequence
 class JImmutableLinkedStack<T>
          Singly linked list implementation of PersistentList that stores and retrieves values in the reverse order of the corresponding add() method calls.
 



Copyright © 2014 Burton Computer Corporation. All rights reserved.