Flowdock
method

diff

Importance_1
v4.0.2 - Show latest stable - 0 notes - Class: Hash
diff(other) public

Returns a hash that represents the difference between two hashes.

{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.