skip method

void skip(
  1. int count
)

Move the read position by count bytes.

Implementation

void skip(int count) {
  offset += count;
}