Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

class::makemethods::standard(3pm) [debian man page]

MakeMethods::Standard(3pm)				User Contributed Perl Documentation				MakeMethods::Standard(3pm)

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 to "use" and instead make methods at runtime by passing the declarations to a subsequent call to "make()". You may include any number of declarations in each call to "use" or "make()". If methods with the same name already exist, earlier calls to "use" or "make()" 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 to "use" or "make". 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. perl v5.10.1 2004-09-06 MakeMethods::Standard(3pm)

Check Out this Related Man Page

MakeMethods::Evaled(3pm)				User Contributed Perl Documentation				  MakeMethods::Evaled(3pm)

NAME
Class::MakeMethods::Evaled - Make methods with simple string evals SYNOPSIS
package MyObject; use Class::MakeMethods::Evaled::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 Evaled::* namespace, and the method types each one provides. The Evaled subclasses generate methods using a simple string templating mechanism and basic string evals. Calling Conventions When you "use" this package, the method names you provide as arguments cause subroutines to be generated and installed in your module. See "Calling Conventions" in Class::MakeMethods::Standard for more information. Declaration Syntax To declare methods, pass in pairs of a method-type name followed by one or more method names. Valid method-type names for this package are listed in "METHOD GENERATOR TYPES". See "Declaration Syntax" in Class::MakeMethods::Standard and "Parameter Syntax" in Class::MakeMethods::Standard for more information. About Evaled Methods SEE ALSO
See Class::MakeMethods for general information about this distribution. For distribution, installation, support, copyright and license information, see Class::MakeMethods::Docs::ReadMe. perl v5.10.1 2004-09-06 MakeMethods::Evaled(3pm)
Man Page