foreach var,hash
Foreach operator. You can use foreach operator to look over all items of the hash. Variable is a pointer to the hash item.
foreach variable,hash {...}
foreach var,hash.keys
You can use foreach operator to look over all keys of the hash.
foreach variable,hash.keys {...}
Related links | Source |