module HashRefinements
Public Instance Methods
reverse_merge(other_hash)
click to toggle source
Merges the caller into other_hash
# File lib/cascade/helpers/hash.rb, line 7 def reverse_merge(other_hash) other_hash.merge(self) end