# File lib/core/facets/array/from.rb, line 8
  def from(index)
    return [] if index >= size
    self[index..-1]
  end