# File lib/core/facets/indexable.rb, line 132
  def from(i)
    return self if i >= size
    slice(i, size - i) #slice(-n..-1)
  end