Paul Evans
Results
282
comments of
Paul Evans
> IIRC it's like this because `trim` is implemented as an XS sub, where the mechanics of the getting the name are an unsolved problem, so to get a less...
Traditionally this has been a usecase for `Sub::Util::set_subname` or the newer equivalents in `meta`: ```perl use Sub::Util qw( set_subname ); my $thing = set_subname thing => sub { ... };...