Looping over keys of a hash


The same way we can loop over keys of a hash - after fetching them using the "keys" function. The declaration of hashes in Perl 6 is similar to that in Perl 5 but when access individual elements in the hash it now keeps the % prefix. Thus the value of the key "Foo" will be %phone{"Foo"}. Similarly if $name contains "Foo" we can use the %phone{$name} expression to get back the relevant value. As mentioned earlier the string interpolation of hashes requires curly braces around the statement.

examples/hash/loop_over_hash.p6
#!/usr/bin/perl6
use v6;

my %phone = 
	"Foo" => 123,
	"Bar" => 456,
;

for keys %phone -> $name {
	say "$name %phone{$name}";
}

Copyright 2006, 2007, 2008, 2009, 2010 Gabor Szabo http://szabgab.com/ Index | TOC
If you are interested in on-site trainings by the author, please contact me directly.

Online courses:

Would you like to get
updated when I publish
the next article?

Follow me:

Google Plus Twitter RSS feed