Open In App
Related Articles

Ruby | Hash fetch_values() function

Improve Article
Improve
Save Article
Save
Like Article
Like

Hash#fetch_values() is a Hash class method which returns array containing the values associated with the given keys. With no other arguments, it will raise a KeyError exception.

Syntax: Hash.fetch_values()

Parameter: Hash values

Return: array containing the values associated with the given keys

Example #1 :




# Ruby code for Hash.fetch_values() method
   
# declaring Hash value
a = { "a" => 100, "b" => 200 }
   
# declaring Hash value
b = {"a" => 100}
   
   
# block condition
# fetch? Value
puts "Hash a fetch_values form : #{a.fetch_values("x"){|k| k.upcase}}\n\n"


Output :

Hash a fetch_values form : ["X"]

Example #2 :




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


Output :

Hash a fetch_values form : [100]

Hash b fetch_values form : [100]

Hash c fetch_values form : [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