Creates a Stream of ascending numbers starting from from and ending just before bound. If bound is omitted, the stream will continue indefinitely.
from
bound
The starting value (inclusive).
The end value (exclusive). Defaults to Infinity, resulting in an endless stream.
Infinity
A stream of ascending numbers starting from from and, if bound is provided, ending just before bound.
Creates a Stream of ascending numbers starting from
from
and ending just beforebound
. Ifbound
is omitted, the stream will continue indefinitely.