# File lib/facets/core/array/thru.rb, line 7 def thru( from, to ) a = [] i = from while i <= to a << self.at(i) i += 1 end a end