# File rparsec/parser.rb, line 687
  def range(from, to, msg="#{as_char from}..#{as_char to} expected")
    from, to = as_num(from), as_num(to)
    satisfies(msg) {|c| c <= to && c >= from}
  end