Method: Mash#except
- Defined in:
- lib/extlib/mash.rb
#except(*keys) ⇒ Mash
Returns A new mash without the selected keys.
108 109 110 |
# File 'lib/extlib/mash.rb', line 108 def except(*keys) super(*keys.map {|k| convert_key(k)}) end |