seek method

void seek(
  1. int position
)

Moves the read marker to the given position

Implementation

void seek(int position) {
  _readPos = position;
}