-
-
17 Sep 2020 14:42:01 UTC
- Distribution: Sub-Private
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues
- Testers (68 / 0 / 0)
- Kwalitee
Bus factor: 1- 97.06% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (3.82KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Attribute::Handlers
- B::Hooks::EndOfScope
- Sub::Identify
- namespace::clean
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- AUTHOR
- MAINTAINER
- BUGS
- SEE ALSO
- SUPPORT
- ACKNOWLEDGEMENTS
- COPYRIGHT & LICENSE
NAME
Sub::Private - Private subroutines and methods
VERSION
Version 0.02
SYNOPSIS
package Foo; use Sub::Private; sub foo :Private { return 42; } sub bar { return foo() + 1; }
DESCRIPTION
This module provide a
:Private
attribute for subroutines. By using the attribut you get truly private methods.AUTHOR
Peter Makholm,
<peter at makholm.net>
MAINTAINER
Nigel Horne,
<njh@bandman.co.uk>
BUGS
Please report any bugs or feature requests to
bug-sub-private at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Sub-Private. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SEE ALSO
namespace::clean
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Sub::Private
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2009 Peter Makholm, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Sub::Private, copy and paste the appropriate command in to your terminal.
cpanm Sub::Private
perl -MCPAN -e shell install Sub::Private
For more information on module installation, please visit the detailed CPAN module installation guide.