reject(*args, &block)
public

No documentation available.

# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 244
    def reject(*args, &block)
      dup.tap { |hash| hash.reject!(*args, &block) }
    end