class BinData::IO::Read

def skipbytes(n)

Seek +n+ bytes from the current position in the io stream.
def skipbytes(n)
  reset_read_bits
  @io.skip(n)
end