reset method

void reset()

Resets the CircularBuffer.

capacity is unaffected.

Implementation

void reset() {
  _start = 0;
  _buf.clear();
}