1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
package Sub::Name; # git description: v0.27-3-g0429db7
# ABSTRACT: (Re)name a sub
# KEYWORDS: subroutine function utility name rename symbol
#pod =pod
#pod
#pod =head1 SYNOPSIS
#pod
#pod use Sub::Name;
#pod
#pod subname $name, $subref;
#pod
#pod $subref = subname foo => sub { ... };
#pod
#pod =head1 DESCRIPTION
#pod
#pod This module has only one function, which is also exported by default:
#pod
#pod =for stopwords subname
#pod
#pod =head2 subname NAME, CODEREF
#pod
#pod Assigns a new name to referenced sub. If package specification is omitted in
#pod the name, then the current package is used. The return value is the sub.
#pod
#pod The name is only used for informative routines (caller, Carp, etc). You won't
#pod be able to actually invoke the sub by the given name. To allow that, you need
#pod to do glob-assignment yourself.
#pod
#pod Note that for anonymous closures (subs that reference lexicals declared outside
#pod the sub itself) you can name each instance of the closure differently, which
#pod can be very useful for debugging.
#pod
#pod =head1 SEE ALSO
#pod
#pod =for :list
#pod * L<Sub::Identify> - for getting information about subs
#pod * L<Sub::Util> - set_subname is another implementation of C<subname>
#pod
#pod =for stopwords cPanel
#pod
#pod =head1 COPYRIGHT AND LICENSE
#pod
#pod This software is copyright (c) 2004, 2008 by Matthijs van Duin, all rights reserved;
#pod copyright (c) 2014 cPanel Inc., all rights reserved.
#pod
#pod This program is free software; you can redistribute it and/or modify
#pod it under the same terms as Perl itself.
#pod
#pod =cut
use 5.006;
use strict;
use warnings;
our $VERSION = '0.28';
use Exporter ();
*import = \&Exporter::import;
our @EXPORT = qw(subname);
our @EXPORT_OK = @EXPORT;
use XSLoader;
XSLoader::load(
__PACKAGE__,
$VERSION,
);
1;
__END__
=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 *
L<Sub::Identify> - for getting information about subs
=item *
L<Sub::Util> - set_subname is another implementation of C<subname>
=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
|