2338f933677513e5416c9e4fff281054cc376921
[p5sagit/Sub-Name.git] / lib / Sub / Name.pm
1 package Sub::Name;
2
3 =head1 NAME
4
5 Sub::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
17 This module has only one function, which is also exported by default:
18
19 =head2 subname NAME, CODEREF
20
21 Assigns a new name to referenced sub.  If package specification is omitted in 
22 the name, then the current package is used.  The return value is the sub.
23
24 The name is only used for informative routines (caller, Carp, etc).  You won't 
25 be able to actually invoke the sub by the given name.  To allow that, you need 
26 to do glob-assignment yourself.
27
28 Note that for anonymous closures (subs that reference lexicals declared outside 
29 the sub itself) you can name each instance of the closure differently, which 
30 can be very useful for debugging.
31
32 =head1 AUTHOR
33
34 Matthijs van Duin <xmath@cpan.org>
35
36 Copyright (C) 2004, 2008  Matthijs van Duin.  All rights reserved.
37 Copyright (C) 2014 cPanel Inc.  All rights reserved.
38 This program is free software; you can redistribute it and/or modify 
39 it under the same terms as Perl itself.
40
41 =cut
42
43 use 5.006;
44
45 use strict;
46 use warnings;
47
48 our $VERSION = '0.06';
49
50 use base 'Exporter';
51 use base 'DynaLoader';
52
53 our @EXPORT = qw(subname);
54 our @EXPORT_OK = @EXPORT;
55
56 bootstrap Sub::Name $VERSION;
57
58 1;