RangeStream constructor
Constructs a Stream which emits all integer values that exist
within the range between startInclusive and endInclusive.
Implementation
RangeStream(int startInclusive, int endInclusive)
: _stream = _buildStream(startInclusive, endInclusive);