in reply to Moose | How to identify subroutine inside an 'around' in case multiple subroutine share the same 'around'?
for (qw(list_users load_user list_prods load_prod)) { my $name = $_; around $name => sub { ... $name is available here too ... }; }
|
|---|