shift method

BcsReader shift(
  1. int bytes
)

Shift current cursor position by bytes.

Implementation

BcsReader shift(int bytes) {
  _bytePosition += bytes;
  return this;
}