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

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

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

Methods in edu.rice.cs.plt.iter that return SkipLastIterable
static
<T> SkipLastIterable<T>
SkipLastIterable.make(Iterable<? extends T> iterable)
          Call the constructor (allows T to be inferred)
static
<T> SkipLastIterable<T>
IterUtil.skipLast(Iterable<? extends T> iter)
          Produce an iterable that skips the last element of iter (if it exists).