SEE ALSO Sub::Identify (RT#76822)
[p5sagit/Sub-Name.git] / lib / Sub / Name.pm
CommitLineData
16c23894 1package Sub::Name;
2
3=head1 NAME
4
5Sub::Name - (re)name a sub
6
7=head1 SYNOPSIS
8
9 use Sub::Name;
10
11 subname $name, $subref;
12
13 $subref = subname foo => sub { ... };
14
15=head1 DESCRIPTION
16
d73d8321 17This module has only one function, which is also exported by default:
16c23894 18
19=head2 subname NAME, CODEREF
20
a0f015f5 21Assigns a new name to referenced sub. If package specification is omitted in
16c23894 22the name, then the current package is used. The return value is the sub.
23
a0f015f5 24The name is only used for informative routines (caller, Carp, etc). You won't
25be able to actually invoke the sub by the given name. To allow that, you need
16c23894 26to do glob-assignment yourself.
27
a0f015f5 28Note that for anonymous closures (subs that reference lexicals declared outside
29the sub itself) you can name each instance of the closure differently, which
d73d8321 30can be very useful for debugging.
16c23894 31
fa1e9525 32=head1 SEE ALSO
33
34=over 4
35
36=item *
37L<Sub::Identify> - for getting information about subs
38
39=back
40
16c23894 41=head1 AUTHOR
42
43Matthijs van Duin <xmath@cpan.org>
44
979516cc 45Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.
24f50a79 46Copyright (C) 2014 cPanel Inc. All rights reserved.
a0f015f5 47This program is free software; you can redistribute it and/or modify
16c23894 48it under the same terms as Perl itself.
49
50=cut
51
52use 5.006;
53
54use strict;
55use warnings;
56
dc237631 57our $VERSION = '0.08';
16c23894 58
59use base 'Exporter';
60use base 'DynaLoader';
61
62our @EXPORT = qw(subname);
63our @EXPORT_OK = @EXPORT;
64
65bootstrap Sub::Name $VERSION;
66
671;