From: "Nicholas Clark" <[EMAIL PROTECTED]> > In Damian's excellent perl6 talk, I think he said that by default a hash > in list context will return a list of pairs. Hence this > > @array = %hash > > for %hash with n keys would give an array of n elements, all pairs.
Will there actually be a "pair" object class? Something like this...
foreach my $pair in %myhash {
print $pair.name, '=', $pair.value, "\n";
}
-Miko
