Uses of Interface
jfun.util.yield.Iterable

Packages that use Iterable
jfun.util.yield Provides a simple framework that supports the Ruby-style yield. 
 

Uses of Iterable in jfun.util.yield
 

Methods in jfun.util.yield that return Iterable
static Iterable Iterables.fromIterator(java.util.Iterator it)
          Transforms an Iterator object to an Iterable object.
static Iterable Iterables.seq(Iterable[] arr)
          Create a new Iterable object that sequentially iterates through the Iterable objects in an array.
static Iterable Iterables.seq(Iterable it1, Iterable it2)
          Create a new Iterable object that sequentially iterates through the given two Iterable object.
 

Methods in jfun.util.yield with parameters of type Iterable
static Iterable Iterables.seq(Iterable[] arr)
          Create a new Iterable object that sequentially iterates through the Iterable objects in an array.
static Iterable Iterables.seq(Iterable it1, Iterable it2)
          Create a new Iterable object that sequentially iterates through the given two Iterable object.
 

Constructors in jfun.util.yield with parameters of type Iterable
Continuator(Iterable it)
          Creates a Continuator object.