Sub-Name-0.12
[p5sagit/Sub-Name.git] / README.pod
CommitLineData
67523925 1=pod
2
3=encoding UTF-8
4
5=head1 NAME
6
7Sub::Name - (re)name a sub
8
9=head1 VERSION
10
db3290d9 11version 0.12
67523925 12
13=head1 SYNOPSIS
14
15 use Sub::Name;
16
17 subname $name, $subref;
18
19 $subref = subname foo => sub { ... };
20
21=head1 DESCRIPTION
22
23This module has only one function, which is also exported by default:
24
25=for stopwords subname
26
27=head2 subname NAME, CODEREF
28
29Assigns a new name to referenced sub. If package specification is omitted in
30the name, then the current package is used. The return value is the sub.
31
32The name is only used for informative routines (caller, Carp, etc). You won't
33be able to actually invoke the sub by the given name. To allow that, you need
34to do glob-assignment yourself.
35
36Note that for anonymous closures (subs that reference lexicals declared outside
37the sub itself) you can name each instance of the closure differently, which
38can be very useful for debugging.
39
40=head1 SEE ALSO
41
42=over 4
43
44=item *
db3290d9 45
67523925 46L<Sub::Identify> - for getting information about subs
47
db3290d9 48=item *
67523925 49
db3290d9 50L<Sub::Util> - set_subname is another implementation of C<subname>
67523925 51
db3290d9 52=back
67523925 53
db3290d9 54=for stopwords cPanel
67523925 55
56=head1 AUTHOR
57
58Matthijs van Duin <xmath@cpan.org>
59
60=head1 CONTRIBUTORS
61
00d17844 62=for stopwords Karen Etheridge Florian Ragwitz Matthijs van Duin Reini Urban Dagfinn Ilmari Mannsåker gfx J.R. Mash
67523925 63
64=over 4
65
66=item *
67
68Karen Etheridge <ether@cpan.org>
69
70=item *
71
72Florian Ragwitz <rafl@debian.org>
73
74=item *
75
76Matthijs van Duin <xmath-no-spam@nospam.cpan.org>
77
78=item *
79
80Reini Urban <rurban@cpanel.net>
81
82=item *
83
84Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
85
86=item *
87
88gfx <gfuji@cpan.org>
89
00d17844 90=item *
91
92J.R. Mash <jmash.code@gmail.com>
93
67523925 94=back
95
96=head1 COPYRIGHT AND LICENSE
97
db3290d9 98This software is copyright (c) 2004, 2008 by Matthijs van Duin, all rights reserved;
99copyright (c) 2014 cPanel Inc., all rights reserved.
100
101This program is free software; you can redistribute it and/or modify
102it under the same terms as Perl itself.
103
67523925 104=cut