clean method

void clean()

Cleans(shrink then clear) the buffer

Implementation

void clean() {
  shrink();
  clear();
}