=pod =encoding UTF-8 =head1 NAME Sub::Name - (Re)name a sub =head1 VERSION version 0.24 =head1 SYNOPSIS use Sub::Name; subname $name, $subref; $subref = subname foo => sub { ... }; =head1 DESCRIPTION This module has only one function, which is also exported by default: =for stopwords subname =head2 subname NAME, CODEREF Assigns a new name to referenced sub. If package specification is omitted in the name, then the current package is used. The return value is the sub. The name is only used for informative routines (caller, Carp, etc). You won't be able to actually invoke the sub by the given name. To allow that, you need to do glob-assignment yourself. Note that for anonymous closures (subs that reference lexicals declared outside the sub itself) you can name each instance of the closure differently, which can be very useful for debugging. =head1 SEE ALSO =over 4 =item * L - for getting information about subs =item * L - set_subname is another implementation of C =back =for stopwords cPanel =head1 SUPPORT Bugs may be submitted through L (or L). There is also an irc channel available for users of this distribution, at L on C|irc://irc.perl.org/#toolchain>. =head1 AUTHOR Matthijs van Duin =head1 CONTRIBUTORS =for stopwords Karen Etheridge Graham Knop Leon Timmermans Reini Urban Florian Ragwitz Matthijs van Duin Dagfinn Ilmari Mannsåker gfx Aristotle Pagaltzis J.R. Mash Alexander Bluhm =over 4 =item * Karen Etheridge =item * Graham Knop =item * Leon Timmermans =item * Reini Urban =item * Florian Ragwitz =item * Matthijs van Duin =item * Dagfinn Ilmari Mannsåker =item * gfx =item * Aristotle Pagaltzis =item * J.R. Mash =item * Alexander Bluhm =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004, 2008 by Matthijs van Duin, all rights reserved; copyright (c) 2014 cPanel Inc., all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut