Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfx/perl-sub-name
A fork branch from Sub::Name 0.04 (bug fix and improvement)
https://github.com/gfx/perl-sub-name
Last synced: 26 days ago
JSON representation
A fork branch from Sub::Name 0.04 (bug fix and improvement)
- Host: GitHub
- URL: https://github.com/gfx/perl-sub-name
- Owner: gfx
- Created: 2009-08-31T02:16:05.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2009-08-31T02:35:11.000Z (about 15 years ago)
- Last Synced: 2023-04-09T21:19:23.833Z (over 1 year ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/Sub-Name/
- Size: 78.1 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
Sub::Name 0.04
To install this module type the following:
perl Makefile.PL
make
make test
make installModule documentation:
NAME
Sub::Name - (re)name a subSYNOPSIS
use Sub::Name;subname $name, $subref;
$subref = subname foo => sub { ... };
DESCRIPTION
This module has only one function, which is also exported by default: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.AUTHOR
Matthijs van DuinCopyright (C) 2004, 2008 Matthijs van Duin. All rights reserved. This
program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.