Monthly Shaarli

All links of one month in a single page.

June, 2022

Determining Current Function Name (Perl Cookbook, 2nd Edition)
my $caller_method_with_namespace = (caller(0))[3];
my ($method) = $caller_method_with_namespace =~ /([^::]*)$/;

See also