Module: ActiveSupport::CoreExtensions::Hash::Diff
- Included in:
- Hash
- Defined in:
- lib/active_support/core_ext/hash/diff.rb
Instance Method Summary collapse
-
#diff(h2) ⇒ Object
Returns a hash that represents the difference between two hashes.
Instance Method Details
#diff(h2) ⇒ Object
Returns a hash that represents the difference between two hashes.
Examples:
{1 => 2}.diff(1 => 2) # => {}
{1 => 2}.diff(1 => 3) # => {1 => 2}
{}.diff(1 => 2) # => {1 => 2}
{1 => 2, 3 => 4}.diff(1 => 2) # => {3 => 4}
13 14 15 |
# File 'lib/active_support/core_ext/hash/diff.rb', line 13 def diff(h2) self.dup.delete_if { |k, v| h2[k] == v }.merge(h2.dup.delete_if { |k, v| self.has_key?(k) }) end |