Horje
Ruby | Hash store() method

Hash#store() is a Hash class method that returns an add-on value with the key given by the key-value argument. 

Syntax: Hash.store()
Parameter: Hash values 
key 
value
Return: add on value with the key given by the key-value argument. 

Example #1 : 

Ruby

# Ruby code for Hash.store() 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}
 
 
# store Value
puts "Hash a store form : #{a.store('e', 67)}\n\n"
 
puts "Hash b store form : #{b.store('d', 467)}\n\n"
 
puts "Hash c store form : #{c.store('g', 647)}\n\n"

Output : 

Hash a store form : 67

Hash b store form : 467

Hash c store form : 647

Example #2 : 

Ruby

# Ruby code for Hash.store() 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}
 
# store Value
puts "Hash a store form : #{a.store('e', 67)}\n\n"
 
puts "Hash b store form : #{b.store('d', 467)}\n\n"
 
puts "Hash c store form : #{c.store('g', 647)}\n\n"
 
puts (a)
 
puts (b)
 
puts (c)

Output : 

Hash a store form : 67

Hash b store form : 467

Hash c store form : 647

{"a"=>100, "b"=>200, "e"=>67}
{"a"=>100, "d"=>467}
{"a"=>100, "c"=>300, "b"=>200, "g"=>647}

 




Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Hash size() method Ruby | Hash size() method
Ruby | Time gmt? function Ruby | Time gmt? function
Ruby | Hash shift() method Ruby | Hash shift() method
Ruby | Hash to_hash method Ruby | Hash to_hash method
Ruby | Set proper_superset? function Ruby | Set proper_superset? function

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
9