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