# File lib/hashery/lru_hash.rb, line 231
    def delete_if
      each_node do |n|
        remove_node n if yield n.key, n.value
      end
    end