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

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

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

Methods in edu.rice.cs.plt.iter that return ComposedIterable
static
<T> ComposedIterable<T>
IterUtil.compose(java.lang.Iterable<? extends T> i1, java.lang.Iterable<? extends T> i2)
          Create a ComposedIterable with the given arguments.
static
<T> ComposedIterable<T>
IterUtil.compose(java.lang.Iterable<? extends T> rest, T last)
          Create a ComposedIterable with the given arguments.
static
<T> ComposedIterable<T>
IterUtil.compose(T first, java.lang.Iterable<? extends T> rest)
          Create a ComposedIterable with the given arguments.
static
<T> ComposedIterable<T>
ComposedIterable.make(java.lang.Iterable<? extends T> i1, java.lang.Iterable<? extends T> i2)
          Call the constructor (allows T to be inferred)
static
<T> ComposedIterable<T>
ComposedIterable.make(java.lang.Iterable<? extends T> i1, T v2)
          Call the constructor (allows T to be inferred)
static
<T> ComposedIterable<T>
ComposedIterable.make(T v1, java.lang.Iterable<? extends T> i2)
          Call the constructor (allows T to be inferred)