reverse_merge.rb 1.1 KB
Newer Older
1 2 3 4 5 6 7 8
class Hash
  # Allows for reverse merging two hashes where the keys in the calling hash take precedence over those
  # in the <tt>other_hash</tt>. This is particularly useful for initializing an option hash with default values:
  #
  #   def setup(options = {})
  #     options.reverse_merge! :size => 25, :velocity => 10
  #   end
  #
9 10 11 12
  # The default <tt>:size</tt> and <tt>:velocity</tt> are only set if the +options+ hash passed in doesn't already
  # have the respective key.
  #
  # As contrast, using Ruby's built in <tt>merge</tt> would require writing the following:
13 14
  #
  #   def setup(options = {})
15
  #     options = { :size => 25, :velocity => 10 }.merge(options)
16 17 18 19
  #   end
  def reverse_merge(other_hash)
    other_hash.merge(self)
  end
20

21 22 23
  # Performs the opposite of <tt>merge</tt>, with the keys and values from the first hash taking precedence over the second.
  # Modifies the receiver in place.
  def reverse_merge!(other_hash)
24 25
    # right wins if there is no left
    merge!( other_hash ){|key,left,right| left }
26
  end
27 28

  alias_method :reverse_update, :reverse_merge!
29
end