# File lib/facet/string/succ.rb, line 12
  def succ(n=1)
    s = self
    n.times { s = s.succ_once }
    s
  end