Open In App
Related Articles

Ruby | Hash each_key() function

Improve Article
Improve
Save Article
Save
Like Article
Like

Hash#each_key() is a Hash class method which finds the nested value which calls block once for each_key key in hash by passing the key pair as parameters.

Syntax: Hash.each_key()

Parameter: Hash values

Return: calls block once for each_key key in hash with key as parameter otherwise Enumerator if no argument is passed.

Example #1 :




# Ruby code for Hash.each_key() 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}
  
  
# each Value
puts "Hash a each_key form : #{a.each_key()}\n\n"
  
puts "Hash b each_key form : #{b.each_key {|key| puts "#{key}"}}\n\n"
  
puts "Hash c each_key form : #{c.each_key {|value| puts "#{value}"}}\n\n"


Output :

Hash a each_key form : #

a
c
b
Hash b each_key form : {:a=>100, :c=>300, :b=>200}

a
Hash c each_key form : {:a=>100}

Example #2 :




# Ruby code for Hash.each_key() 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}
  
  
# each Value
puts "Hash a each_key form : #{a.each_key()}\n\n"
  
puts "Hash b each_key form : #{b.each_key {|key| puts "#{key}"}}\n\n"
  
puts "Hash c each_key form : #{c.each_key {|value| puts "#{value}"}}\n\n"


Output :

Hash a each_key form : #

a
Hash b each_key form : {"a"=>100}

a
c
b
Hash c each_key form : {"a"=>100, "c"=>300, "b"=>200}


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