skip method

void skip(
  1. int length
)

skip bits with length

Implementation

void skip(int length) {
  _index = _index + length;
}