Interval
data class Interval(val start: Expression, val end: Expression, val type: Interval.IntervalType) : PrimitiveType
Expression to represent the interval of integers from start to end.
Parameters
start
An Expression representing the starting point of the interval.
end
An Expression representing the end point of the interval.
type
The interval type, i.e. Open, Closed, RightOpen, and LeftOpen.