# File lib/set.rb, line 230
  def delete_if
    to_a.each { |o| @hash.delete(o) if yield(o) }
    self
  end