To Operator

Description:

Construct a list of whole numbers between the two bounds, inclusive.
Returns:
Whole Number*
Parameters:
Parameter
Data Type
Description
1
Whole Number
The lower bound.
2
Whole Number
The upper bound.
Example:
Expression
Result
-2 To 3
List( -2, -1, 0, 1, 2, 3 )

Related content