shift method

BcsWriter shift(
  1. int bytes
)

Shift current cursor position by bytes.

Implementation

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