table of contents
other versions
- Tumbleweed 0.11-5.36
- Leap-15.6
| MooseX::Aliases::Meta::Trait::Attribute(3) | User Contributed Perl Documentation | MooseX::Aliases::Meta::Trait::Attribute(3) |
NAME¶
MooseX::Aliases::Meta::Trait::Attribute - attribute metaclass trait for MooseX::Aliases
VERSION¶
version 0.11
SYNOPSIS¶
package MyApp::Role;
use Moose::Role;
use MooseX::Aliases;
has this => (
isa => 'Str',
is => 'rw',
alias => 'that',
);
DESCRIPTION¶
This trait adds the "alias" option to attribute creation. It is automatically applied to all attributes when "use MooseX::Aliases;" is run.
AUTHORS¶
- Jesse Luehrs <doy@tozt.net>
- Chris Prather <chris@prather.org>
- Justin Hunter <justin.d.hunter@gmail.com>
COPYRIGHT AND LICENSE¶
This software is copyright (c) 2013 by Jesse Luehrs.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 2013-07-26 | perl v5.42.0 |