The inclusive start of the range.
Optional
end: numberThe exclusive end of the range. If it is not provided, then start is used as the exclusive end, and the sequence will start from 0.
The step to increment the sequence by. If not provided, it defaults to 1.
Generated using TypeDoc
Generates a sequence of numbers within a specified range.
Returns
A generator yielding the next number in the sequence.
Throws
If the start, end, or step arguments are not finite numbers.
Example
Example
Example
Example