clear method

void clear()

Empties string.

This can be used to avoid double-processing data.

Implementation

void clear() {
  _buffer.clear();
}