Class-MethodMaker
view release on metacpan or search on metacpan
lib/Class/MethodMaker.pm view on Meta::CPAN
use XSLoader qw();
XSLoader::load 'Class::MethodMaker', $VERSION;
sub AUTOLOAD {
(my $x = $AUTOLOAD) =~ s/^Class::MethodMaker/Class::MethodMaker::Engine/;
goto &$x(@_);
}
sub import { Class::MethodMaker::Engine->import(@_[1..$#_]) }
sub INTEGER() { Class::MethodMaker::Constants::INTEGER() }
1; # keep require happy
__END__
=head1 NAME
Class::MethodMaker - Create generic methods for OO Perl
=head1 SYNOPSIS
( run in 0.330 second using v1.01-cache-2.11-cpan-1f129e94a17 )