Since answers to your question have been given already I just felt like writing the test code without a lot of extra variables, just because I love
map:
$_->() for map @$_, values %HoL;
If you don't want all values, and/or want the subroutines in order, you can do:
$_->() for map @$_, @HoL{qw/ one two /};
I don't know if it's more readable, but personally I find it more concise and more straight to the point than nestled for loop with extra and only once used variables.
If you want the return values from the callbacks it gets extra nifty:
@ret = map $_->(), map @$_, @HoL{qw/ one two /};
I also want to warn about dereferencing the callback without parentheses, as often seen when using the
& to dereference it. It doesn't do what you think, and the issue is covered in perlfaq7, "What's the difference between calling a function as &foo and foo()?".
Looking at the code again though, I noticed that you do
(\&hello, \&goodbye,)
There's nothing wrong with that, but I figured you'd perhaps be glad to know that you can use the dangerously-looking
\(&hello, &goodbye,)
instead to save yourself a couple of backslashes. No, the subroutines does not get called.
\(...) is quite special. Be sure to check it out in perlref (perlop will just point you there anyway).
Cheers,
ihb
PS. Yes, I love
map.
:)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.