class HexaPDF::Utils::BitStreamReader

def append_data(str)

Appends some data to the string from where bits are read.
def append_data(str)
  @data.slice!(0, @pos)
  @data << str
  @pos = 0
  self
end