Method: Dictionary#reject!

Defined in:
lib/extlib/dictionary.rb

#reject!(&block) ⇒ Object



298
299
300
301
# File 'lib/extlib/dictionary.rb', line 298

def reject!( &block )
  hsh2 = reject(&block)
  self == hsh2 ? nil : hsh2
end