# File lib/pry/history_array.rb, line 82
    def each
      ((@count - size)...@count).each do |n|
        yield @hash[n]
      end
    end