# File lib/core/facets/array/from.rb, line 21
  def thru(from, to=nil)
    from, to = 0, from unless to
    return [] if from >= size
    self[from..to]
  end