class PDF::Reader::CMap

def process_bfchar_instructions(instructions)

def process_bfchar_instructions(instructions)
  instructions.each_slice(2) do |one, two|
    find    = str_to_int(one)
    replace = str_to_int(two)
    @map[find.first] = replace
  end
end