isEnd method

bool isEnd()

Checks if the stream has reached the end.

Implementation

bool isEnd() {
  return _current == _data.length;
}