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 :
a = { "a" => 100 , "b" => 200 }
b = { "a" => 100 }
puts "Hash a fetch_values form : #{a.fetch_values(" x "){|k| k.upcase}}\n\n"
|
Output :
Hash a fetch_values form : ["X"]
Example #2 :
a = { "a" => 100 , "b" => 200 }
b = { "a" => 100 }
c = { "a" => 100 , "c" => 300 , "b" => 200 }
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