skip method

void skip(
  1. int bytes
)

Skip the given bytes.

Implementation

void skip(int bytes) {
  _position += bytes;
}