rewind method

ByteBuffer rewind()

Rewinds this buffer. Sets the position to zero

Implementation

ByteBuffer rewind() {
  _pos = 0;
  return this;
}