# File lib/ramaze/snippets/ramaze/lru_hash.rb, line 173
    def each_pair
      return enum_for(:each_pair) unless block_given?
      objs.each{|key, obj| yield key, obj.content }
      self
    end