# File lib/facets/core/hash/delete_unless.rb, line 3 def delete_unless (&block) delete_if { |key, value| not block.call(key, value) } end