Flowdock
method

diff

Importance_1
v2.3.8 - Show latest stable - 0 notes - Class: ActiveSupport::CoreExtensions::Hash::Diff
diff(h2) public

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}
Show source
Register or log in to add new notes.