Returns a Stream that yields numbers starting from 'start' up to 'start + count - 1'.
The first number in the range.
The number of elements in the range.
The step between elements.
A Stream that yields numbers in the range.
const result = range(1, 5, 2);console.log([...result]); // [1, 3, 5] Copy
const result = range(1, 5, 2);console.log([...result]); // [1, 3, 5]
Returns a Stream that yields numbers starting from 'start' up to 'start + count - 1'.