Open In App
Related Articles

Ruby | Hash eql? function

Improve Article
Improve
Save Article
Save
Like Article
Like

Hash#eql?() is a Hash class method which checks whether the two Hash arrays are equal or not.

Syntax: Hash.eql?()

Parameter: Hash values

Return: true – if two hash arrays are equal otherwise return false

Example #1 :




# Ruby code for Hash.eql?() method
   
# declaring Hash value
a = {a:100, b:200}
   
# declaring Hash value
b = {a:100, c:300, b:200}
   
# declaring Hash value
c = {a:100}
   
   
# equal? Value
puts "Hash a equal? form : #{a.eql?(b)}\n\n"
   
puts "Hash b equal? form : #{b.eql?(c)}\n\n"
   
puts "Hash c equal? form : #{c.eql?(a)}\n\n"


Output :

Hash a equal? form : false

Hash b equal? form : false

Hash c equal? form : false

Example #2 :




# Ruby code for Hash.equal?() method
   
# declaring Hash value
a = { "a" => 100, "b" => 200 }
   
# declaring Hash value
b = {"a" => 100}
   
# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}
   
   
# equal? Value
puts "Hash a equal? form : #{a.eql?(b)}\n\n"
   
puts "Hash b equal? form : #{b.eql?(c)}\n\n"
   
puts "Hash c equal? form : #{c.eql?(a)}\n\n"


Output :

Hash a equal? form : false

Hash b equal? form : false

Hash c equal? form : false


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Similar Reads