# File lib/active_support/core_ext/hash/except.rb, line 19
  def except!(*keys)
    keys.each { |key| delete(key) }
    self
  end