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