This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Moose; | |
has frobnizer => ( is=>'ro', isa=>'Str', required=>1 ); | |
has funger => ( is=>'rw', isa=>'Int', lazy_build=>1 ); |
the first thing that can be done is using moose builtin types instead of their name, with moosex::types::moose. this allows to remove the quotes around the types:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Moose; | |
use MooseX::Types::Moose qw{ Int Str }; | |
has frobnizer => ( is=>'ro', isa=>Str, required=>1 ); | |
has funger => ( is=>'rw', isa=>Int, lazy_build=>1 ); |
but that's still a bit mouthful. enters moosex::has::sugar, for a nicer code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Moose; | |
use MooseX::Has::Sugar; | |
use MooseX::Types::Moose qw{ Int Str }; | |
has frobnizer => ( ro, isa=>Str, required ); | |
has funger => ( rw, isa=>Int, lazy_build ); |
your code is now more readable - yet some other modules that i'll now use in my dists...
I use qw to declare lot of moose things:
ReplyDeletepackage Human;
use Moose;
has Firstname => qw< isa Str is rw required 1 lazy_build 1 > ;
hth
@marc: not recommended by moose folks... and it's still mouthfull.
ReplyDeleteI would say Uglying Moose and making things more Complex.
ReplyDeleteIn the first Version you just have simple key=>value that everybode knews.
The second version has absolutly no benefit over the first.
And in the third version you left key=>value assignment that can produce more confusion then solve confusion.
@sidburn22: i guess that's in the eye of the beholder. i happen to like it, and find it really easier to read, which is why i shared it here. but you're in no way forced to use it...
ReplyDelete