class Hash

Public Instance Methods

==(other) click to toggle source
# File lib/loquor/object_hash.rb, line 62
def ==(other)
  if other.is_a?(Loquor::ObjectHash)
    other == self
  else
    hash_equals(other)
  end
end
Also aliased as: hash_equals
hash_equals(other)
Alias for: ==