= private = protected
reject(&block)
This method has no description. You can help the Ruby on Rails community by adding new notes.
# File activesupport/lib/active_support/ordered_hash.rb, line 44 def reject(&block) dup.reject!(&block) end
This is inverse operation of select. If block return false add item to array.
[1,2,3,4].reject {|n| n%2==0}
> [1, 3]
Like select method with inverse.