# File lib/facet/harray.rb, line 403 def reverse_each i = self.length - 1 while i >= 0 yield(self.fetch(i)) i -= 1 end end