# File lib/facets/core/string/pop.rb, line 5
  def pop
    return '' if size == 0
    r = self[-1,1]
    self[-1] = ''
    r #self
  end