/usr/share/perl5/Class/MakeMethods/Basic.pm is in libclass-makemethods-perl 1.01-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | package Class::MakeMethods::Basic;
use Class::MakeMethods '-isasubclass';
$VERSION = 1.000;
1;
__END__
########################################################################
=head1 NAME
Class::MakeMethods::Basic - Make really simple methods
=head1 SYNOPSIS
package MyObject;
use Class::MakeMethods::Basic::Hash (
'new' => [ 'new' ],
'scalar' => [ 'foo', 'bar' ]
);
package main;
my $obj = MyObject->new( foo => "Foozle", bar => "Bozzle" );
print $obj->foo();
$obj->bar("Barbados");
=head1 DESCRIPTION
This document describes the various subclasses of Class::MakeMethods
included under the Basic::* namespace, and the method types each
one provides.
The Basic subclasses provide stripped-down method-generation implementations.
Subroutines are generated as closures bound to each method name.
=head2 Calling Conventions
When you C<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 C<use> and instead make methods
at runtime by passing the declarations to a subsequent call to
C<make()>.
You may include any number of declarations in each call to C<use>
or C<make()>. If methods with the same name already exist, earlier
calls to C<use> or C<make()> win over later ones, but within each
call, later declarations superceed earlier ones.
You can install methods in a different package by passing C<-TargetClass =E<gt> I<package>> as your first arguments to C<use> or C<make>.
See L<Class::MakeMethods/"USAGE"> for more details.
=head2 Declaration Syntax
The following types of declarations are supported:
=over 4
=item *
I<generator_type> => 'I<method_name>'
=item *
I<generator_type> => 'I<name_1> I<name_2>...'
=item *
I<generator_type> => [ 'I<name_1>', 'I<name_2>', ...]
=back
For a list of the supported values of I<generator_type>, see
L<Class::MakeMethods::Docs::Catalog/"BASIC CLASSES">, or the documentation
for each subclass.
For each method name you provide, a subroutine of the indicated
type will be generated and installed under that name in your module.
Method names should start with a letter, followed by zero or more
letters, numbers, or underscores.
=head1 SEE ALSO
See L<Class::MakeMethods> for general information about this distribution.
For distribution, installation, support, copyright and license
information, see L<Class::MakeMethods::Docs::ReadMe>.
=cut
|