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