# File lib/core/facets/indexable.rb, line 116 def thru(from, to) a = [] i = from while i <= to a << slice(i) i += 1 end a end