Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Class::MOP::Overload

Name Class::MOP::Overload
Version 2.2201
Located at /usr/local/lib64/perl5
File /usr/local/lib64/perl5/Class/MOP/Overload.pm
Is Core No
Search CPAN for this module Class::MOP::Overload
Documentation Class::MOP::Overload
Module Details Class::MOP::Overload


NAME

Class::MOP::Overload - Overload Meta Object


VERSION

version 2.2201


SYNOPSIS

    my $meta     = Class->meta;
    my $overload = $meta->get_overloaded_operator('+');
    if ( $overload->has_method_name ) {
        print 'Method for + is ', $overload->method_name, "\n";
    }
    else {
        print 'Overloading for + is implemented by ',
            $overload->coderef_name, " sub\n";
    }


DESCRIPTION

This class provides meta information for overloading in classes and roles.


INHERITANCE

Class::MOP::Overload is a subclass of the Class::MOP::Object manpage.


METHODS

Class::MOP::Overload->new(%options)

This method creates a new Class::MOP::Overload object. It accepts a number of options:

$overload->operator

Returns the operator for this overload object.

$overload->method_name

Returns the method name that implements overloading, if it has one.

$overload->has_method_name

Returns true if the object has a method name.

$overload->method

Returns the the Class::MOP::Method manpage that implements overloading, if it has one.

$overload->has_method

Returns true if the object has a method.

$overload->coderef

Returns the coderef that implements overloading, if it has one.

$overload->has_coderef

Returns true if the object has a coderef.

$overload->coderef_package

Returns the package for the coderef that implements overloading, if it has one.

$overload->has_coderef

Returns true if the object has a coderef package.

$overload->coderef_name

Returns the sub name for the coderef that implements overloading, if it has one.

$overload->has_coderef_name

Returns true if the object has a coderef name.

$overload->is_anonymous

Returns true if the overloading is implemented by an anonymous coderef.

$overload->associated_metaclass

Returns the the Class::MOP::Module manpage (class or role) that is associated with the overload object.

$overload->clone

Clones the overloading object, setting original_overload in the process.

$overload->original_overload

For cloned objects, this returns the the Class::MOP::Overload manpage object from which they were cloned. This can be used to determine the source of an overloading in a class that came from a role, for example.


AUTHORS


COPYRIGHT AND LICENSE

This software is copyright (c) 2006 by Infinity Interactive, Inc.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024