method

each_pair

v1_8_7_330 - Show latest stable - Class: Hash
each_pair()
public

Calls block once for each key in hsh, passing the key and value as parameters.

h = { "a" => 100, "b" => 200 }
h.each_pair {|key, value| puts "#{key} is #{value}" }

produces:

a is 100
b is 200