class BinData::BitAligned::BitAlignedIO

def readbytes(n)

def readbytes(n)
  n.times.inject(binary_string("")) do |bytes, _|
    bytes + @io.readbits(8, :big).chr
  end
end