-
-
07 Sep 2004 21:45:34 UTC
- Distribution: Class-MakeMethods
- Module version: 1
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (5046 / 281 / 0)
- Kwalitee
Bus factor: 0- 69.84% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (158.37KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Class::MakeMethods::Standard - Make common object accessors
SYNOPSIS
package MyObject; use Class::MakeMethods::Standard::Hash ( new => 'new', scalar => [ 'foo', 'bar' ], array => 'my_list', hash => 'my_index', );
DESCRIPTION
This document describes the various subclasses of Class::MakeMethods included under the Standard::* namespace, and the method types each one provides.
The Standard subclasses provide a parameterized set of method-generation implementations.
Subroutines are generated as closures bound to a hash containing the method name and (optionally) additional parameters.
USAGE AND SYNTAX
When you
use
a subclass of this package, the method declarations you provide as arguments cause subroutines to be generated and installed in your module. You can also omit the arguments touse
and instead make methods at runtime by passing the declarations to a subsequent call tomake()
.You may include any number of declarations in each call to
use
ormake()
. If methods with the same name already exist, earlier calls touse
ormake()
win over later ones, but within each call, later declarations superceed earlier ones.You can install methods in a different package by passing
-target_class => package
as your first arguments touse
ormake
.See "USAGE" in Class::MakeMethods for more details.
SEE ALSO
See Class::MakeMethods for general information about this distribution.
For distribution, installation, support, copyright and license information, see Class::MakeMethods::Docs::ReadMe.
Module Install Instructions
To install Class::MakeMethods, copy and paste the appropriate command in to your terminal.
cpanm Class::MakeMethods
perl -MCPAN -e shell install Class::MakeMethods
For more information on module installation, please visit the detailed CPAN module installation guide.