method
reject
rails latest stable - Class:
ActiveSupport::OrderedHash
reject(*args, &block)public
No documentation available.
# File activesupport/lib/active_support/ordered_hash.rb, line 37
def reject(*args, &block)
dup.tap { |hash| hash.reject!(*args, &block) }
end