Method: CoreExt::HashWithIndifferentAccess#reverse_merge!
- Defined in:
- lib/core_ext/hash_with_indifferent_access.rb
#reverse_merge!(other_hash) ⇒ Object
Same semantics as reverse_merge but modifies the receiver in-place.
218 219 220 |
# File 'lib/core_ext/hash_with_indifferent_access.rb', line 218 def reverse_merge!(other_hash) replace(reverse_merge( other_hash )) end |