advanceBy method

void advanceBy(
  1. int length
)

Moves the read position for length characters. length can be negative.

Implementation

void advanceBy(int length) {
  _position += length;
}