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