method
reject
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::HashWithIndifferentAccess
reject(*args, &block)public
No documentation available.
# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 332
def reject(*args, &block)
return to_enum(:reject) unless block_given?
dup.tap { |hash| hash.reject!(*args, &block) }
end