method

diff

v3.2.1 - Show latest stable - Class: Hash
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}