module BinData::BitAligned

def do_write(io)

def do_write(io)
  value_to_binary_string(_value).each_byte { |v| io.writebits(v, 8, :big) }
end