# File lib/facet/string/line_to_char_map.rb, line 10
  def line_to_char_map
    offset=0; charmap = []
    self.each do |line|
      charmap << (offset..(offset + line.length - 1))
      offset += line.length
    end
    charmap
  end