# File lib/hashery/lru_hash.rb, line 43 def each_pair if block_given? each_node do |n| yield [n.key, n.value] end else enum_for :each_pair end end