aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
blob: 63b4ba49e9b6e8d05dc0d78437a83418f3027f7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class Hash
  # Merges the caller into +other_hash+. For example,
  #
  #   options = options.reverse_merge(:size => 25, :velocity => 10)
  #
<<<<<<< HEAD
  # 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:
  #
  #   def setup(options = {})
  #     options = { :size => 25, :velocity => 10 }.merge(options)
  #   end
=======
  # is equivalent to
  #
  #   options = {:size => 25, :velocity => 10}.merge(options)
  #
  # This is particularly useful for initializing an options hash
  # with default values.
>>>>>>> 20768176292cbcb883ab152b4aa9ed8c664771cd
  def reverse_merge(other_hash)
    other_hash.merge(self)
  end

  # Destructive +reverse_merge+.
  def reverse_merge!(other_hash)
    # right wins if there is no left
    merge!( other_hash ){|key,left,right| left }
  end

  alias_method :reverse_update, :reverse_merge!
end