method

diff

Importance_1
v3.2.13 - Show latest stable - 0 notes - 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}
Show source
Register or log in to add new notes.