skip method

void skip(
  1. int bytesToSkip
)

Implementation

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