Method: Array#without
- Defined in:
- lib/active_support/core_ext/array/access.rb
#without(*elements) ⇒ Object
Alias for #excluding.
52 53 54 |
# File 'lib/active_support/core_ext/array/access.rb', line 52 def without(*elements) excluding(*elements) end |