consume method

void consume(
  1. int length
)

Implementation

void consume(int length) {
  pos += length;
  start = pos;
}