Query: moosex::attribute::chained
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MooseX::Attribute::Chained(3pm) User Contributed Perl Documentation MooseX::Attribute::Chained(3pm)NAMEMooseX::Attribute::Chained - Attribute that returns the instance to allow for chainingVERSIONversion 1.0.1SYNOPSISpackage Test; use Moose; has debug => ( traits => [ 'Chained' ], is => 'rw', isa => 'Bool', ); sub complex_method { my $self = shift; #... print "helper message" if $self->debug; #... } 1; Which allows for: my $test = Test->new; $test->debug(1)->complex_method; $test->debug(1); # returns $test $test->debug; # returns 1DESCRIPTIONMooseX::Attribute::Chained is a Moose Trait which allows for method chaining on accessors by returning $self on write/set operations.AUTHORSo Moritz Onken <onken@netcubed.de> o David McLaughlin <david@dmclaughlin.com>COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Moritz Onken. 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 v5.14.2 2012-01-28 MooseX::Attribute::Chained(3pm)
Similar Topics in the Unix Linux Community |
---|
gdb: problem while debug an executable file |
debug with eclipse |
dbx issue |