I recently came across the following code snippet
$count_stuff{$_}++ for @stuff;
It's a pretty convenient way to use a hash to count occurences of strings in an array for example. I understand how it works, but not why it works. I can not find the documentation for this way of using for.
Why does it work? And where is the documentation?
if,while, orunlessafter a statement. – Rafe Kettler Jun 8 '11 at 15:35perlfuncperlopandperlsyn, but between the three of these you can find almost anything. N.B.perlfuncis searchable with the command line switch-fas inperldoc -f opendir. – Joel Berger Jun 8 '11 at 16:21