# File lib/hashery/lruhash.rb, line 42
  def each_key
    if block_given?
      each_node do |n|
        yield n.key
      end
    else
      enum_for :each_key
    end
  end