reset method

void reset()

Resets the read and write positions markers to the start of the buffer */

Implementation

void reset() {
  _readPos = 0;
  _writePos = 0;
}