• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D02-Mar-2010372

lib/H05-Apr-20133

Makefile.PLH A D02-Mar-2010200

MANIFESTH A D02-Mar-201079

META.ymlH A D02-Mar-2010386

Name.xsH A D02-Mar-20102.1 KiB

READMEH A D02-Mar-20101.2 KiB

t/H11-Apr-20133

README

1Sub::Name 0.04
2
3To install this module type the following:
4
5   perl Makefile.PL
6   make
7   make test
8   make install
9
10
11Module documentation:
12
13NAME
14    Sub::Name - (re)name a sub
15
16SYNOPSIS
17        use Sub::Name;
18
19        subname $name, $subref;
20
21        $subref = subname foo => sub { ... };
22
23DESCRIPTION
24    This module has only one function, which is also exported by default:
25
26  subname NAME, CODEREF
27    Assigns a new name to referenced sub. If package specification is
28    omitted in the name, then the current package is used. The return value
29    is the sub.
30
31    The name is only used for informative routines (caller, Carp, etc). You
32    won't be able to actually invoke the sub by the given name. To allow
33    that, you need to do glob-assignment yourself.
34
35    Note that for anonymous closures (subs that reference lexicals declared
36    outside the sub itself) you can name each instance of the closure
37    differently, which can be very useful for debugging.
38
39AUTHOR
40    Matthijs van Duin <xmath@cpan.org>
41
42    Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. This
43    program is free software; you can redistribute it and/or modify it under
44    the same terms as Perl itself.
45