method

size

v1_8_6_287 - Show latest stable - Class: Hash
size()
public

Returns the number of key-value pairs in the hash.

   h = { "d" => 100, "a" => 200, "v" => 300, "e" => 400 }
   h.length        #=> 4
   h.delete("a")   #=> 200
   h.length        #=> 3