Uses of Class
util.Functional.Range

Packages that use Functional.Range
util   
 

Uses of Functional.Range in util
 

Methods in util that return Functional.Range
static Functional.Range Functional.range(int stop)
          Construct the integer range [0, stop), as an efficient iterable.
static Functional.Range Functional.range(int start, int stop)
          Construct the integer range [start, stop), as an efficient iterable.
static Functional.Range Functional.range(int start, int stop, int step)
          Construct the integer range from start (inclusive) to stop (exclusive), in increments of step, as an efficient iterable.