java.lang.Object
com.google.refine.expr.functions.strings.Range
All Implemented Interfaces:
Function

public class Range extends Object implements Function
Implements the logic behind the range function. The range function can take in a single string of the form 'a, b, c' or three integers a, b, c where a and b represents the first (inclusive) and last (exclusive) numbers in the range respectively. If b is not given, a defaults to the range end and 0 becomes the range start. c is optional and represents the step (increment) for the generated sequence.