Vulnerabilities | |||||
---|---|---|---|---|---|
Version | Suggest | Low | Medium | High | Critical |
0.28 | 0 | 0 | 0 | 0 | 0 |
0.27 | 0 | 0 | 0 | 0 | 0 |
0.26 | 0 | 0 | 0 | 0 | 0 |
0.25-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.24-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.23-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.22-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.21 | 0 | 0 | 0 | 0 | 0 |
0.20-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.19 | 0 | 0 | 0 | 0 | 0 |
0.18 | 0 | 0 | 0 | 0 | 0 |
0.17-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.16-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.15 | 0 | 0 | 0 | 0 | 0 |
0.14 | 0 | 0 | 0 | 0 | 0 |
0.13 | 0 | 0 | 0 | 0 | 0 |
0.12 | 0 | 0 | 0 | 0 | 0 |
0.11-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.10-TRIAL | 0 | 0 | 0 | 0 | 0 |
0.09 | 0 | 0 | 0 | 0 | 0 |
0.08 | 0 | 0 | 0 | 0 | 0 |
0.07 | 0 | 0 | 0 | 0 | 0 |
0.06 | 0 | 0 | 0 | 0 | 0 |
0.28 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
Artistic-1.0 - Artistic License 1.0=pod
=encoding UTF-8
=head1 NAME
Sub::Name - (Re)name a sub
=head1 VERSION
version 0.28
=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 *
LSub::Identify - for getting information about subs
=item *
LSub::Util - set_subname is another implementation of C
=back
=for stopwords cPanel
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name> (or L<bug-Sub-Name@rt.cpan.org|mailto:bug-Sub-Name@rt.cpan.org>).
There is also an irc channel available for users of this distribution, at L<C<#toolchain> on C<irc.perl.org>|irc://irc.perl.org/#toolchain>.
=head1 AUTHOR
Matthijs van Duin xmath@cpan.org
=head1 CONTRIBUTORS
=for stopwords Karen Etheridge Graham Knop Leon Timmermans Florian Ragwitz Reini Urban Matthijs van Duin Dagfinn Ilmari Mannsåker gfx Aristotle Pagaltzis Alexander Bluhm J.R. Mash
=over 4
=item *
Karen Etheridge ether@cpan.org
=item *
Graham Knop haarg@haarg.org
=item *
Leon Timmermans fawaka@gmail.com
=item *
Florian Ragwitz rafl@debian.org
=item *
Reini Urban rurban@cpan.org
=item *
Matthijs van Duin xmath-no-spam@nospam.cpan.org
=item *
Dagfinn Ilmari Mannsåker ilmari@ilmari.org
=item *
gfx gfuji@cpan.org
=item *
Aristotle Pagaltzis pagaltzis@gmx.de
=item *
Alexander Bluhm alexander.bluhm@gmx.net
=item *
J.R. Mash jmash.code@gmail.com
=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