class Hash

Copyright © 2017 Kenichi Kamiya

Copyright © 2017 Kenichi Kamiya

Public Class Methods

Diff(old, new) click to toggle source

@param old [Hash] @param new [Hash] @return [Hash::Diff]

# File lib/hash/diff.rb, line 10
def Diff(old, new)
  Diff.new(old: old, new: new)
end