reset method
void
reset()
Resets the read and write positions markers to the start of the buffer */
Implementation
void reset() {
_readPos = 0;
_writePos = 0;
}
Resets the read and write positions markers to the start of the buffer */
void reset() {
_readPos = 0;
_writePos = 0;
}