Uses of Class
edu.rice.cs.plt.iter.SequenceIterable

Packages that use SequenceIterable
edu.rice.cs.plt.iter A collection of implementations of Iterable and Iterator
 

Uses of SequenceIterable in edu.rice.cs.plt.iter
 

Methods in edu.rice.cs.plt.iter that return SequenceIterable
static
<T> SequenceIterable<T>
IterUtil.infiniteSequence(T initial, Lambda<? super T,? extends T> successor)
          Create an infinite sequence defined by an initial value and a successor function.
static
<T> SequenceIterable<T>
SequenceIterable.make(T initial, Lambda<? super T,? extends T> successor)
          Call the constructor (allows T to be inferred)