# File lib/core/facets/array/from.rb, line 20
  def thru(from, to=nil)
    from, to = 0, from unless to
    to = size - 1 if to >= size
    a = []
    i = from
    while i <= to
      a << self[i]
      i += 1
    end
    a
  end