The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

mop::manual::details::roles - A manual for p5-mop

DESCRIPTION

TODO

GRAMMAR

Roles in the p5-mop are defined in the following way:

  role NAME
    ?(with NAME ?(, NAME)*)
    ?(meta NAME)
    ?(is TRAIT ?(, TRAIT)*)
  BLOCK

The role keyword is followed by a name.

Which is optionally followed by the with keyword that is followed by a comma separated list of the names of the roles you wish to be composed into your role.

Which is optionally followed by the meta keyword that is followed by the name of the metarole you wish to be used in constructing this role.

Which is optionally followed by the is keyword that is followed by a comma separated list of traits you wish to be applied to your role.

After this comes a block, within which you can define methods and attributes (refer to those docs for more info).

BUGS

Since this module is still under development we would prefer to not use the RT bug queue and instead use the built in issue tracker on Github.

Git Repository

Issue Tracker

AUTHOR

Stevan Little <stevan.little@iinteractive.com>

Jesse Luehrs <doy@tozt.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Infinity Interactive.

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