method

each_pair

Importance_1
Ruby latest stable (v1_8_7_72) - 0 notes - 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
Show source
Register or log in to add new notes.