# File lib/ramaze/snippets/ramaze/lru_hash.rb, line 179
    def each_key(&block)
      return enum_for(:each_key) unless block_given?
      objs.each_key{|key| yield key }
      self
    end