class BinData::IO

def writebytes(str)

Writes the given string of bytes to the io stream.
def writebytes(str)
  flushbits
  @raw_io.write(str)
end