in reply to Re: using ref to hash of hash effectively
in thread using ref to hash of hash effectively
Though it's nice to show different ways to do it, I feel obliged to point out that many folks disapprove of using map in void context.
Though map in void context no longer suffers the huge performance penalty it once did, some still consider it poor style (see, for example, the performance-related discussion in this old thread).
I personally applaud the simple stylistic advice summary given in Effective Perl Programming in the item "Use foreach, map and grep as appropriate", namely:
Update: I like BillKSmith's extra rule:
Note that Perl::Critic provides a ProhibitVoidMap policy to allow the code police to prohibit using map in void context.
References Added Later
See Also
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: using ref to hash of hash effectively
by alexander_lunev (Pilgrim) on Dec 27, 2020 at 11:40 UTC | |
by BillKSmith (Monsignor) on Dec 27, 2020 at 14:54 UTC | |
by alexander_lunev (Pilgrim) on Dec 27, 2020 at 18:08 UTC | |
by BillKSmith (Monsignor) on Dec 27, 2020 at 19:34 UTC | |
by kcott (Archbishop) on Dec 27, 2020 at 18:51 UTC | |
by alexander_lunev (Pilgrim) on Dec 27, 2020 at 19:18 UTC |