MooseX::Role::WithOverloading - Roles which support overloading


MooseX-Role-WithOverloading documentation  | view source Contained in the MooseX-Role-WithOverloading distribution.

Index


NAME

Top

MooseX::Role::WithOverloading - Roles which support overloading

SYNOPSIS

Top

    package MyRole;
    use MooseX::Role::WithOverloading;

    use overload
        q{""}    => 'as_string',
        fallback => 1;

    has message => (
        is       => 'rw',
        isa      => 'Str',
    );

    sub as_string { shift->message }

    package MyClass;
    use Moose;
    use namespace::autoclean;

    with 'MyRole';

    package main;

    my $i = MyClass->new( message => 'foobar' );
    print $i; # Prints 'foobar'

DESCRIPTION

Top

MooseX::Role::WithOverloading allows you to write a Moose::Role which defines overloaded operators and allows those operator overloadings to be composed into the classes/roles/instances it's compiled to, while plain Moose::Roles would lose the overloading.

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


MooseX-Role-WithOverloading documentation  | view source Contained in the MooseX-Role-WithOverloading distribution.