byteStream method

Iterable<int> byteStream()

Implementation

Iterable<int> byteStream() sync*
{
  while (offset < length) yield this[offset++];
}