logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MooseX::Attribute::Chained - Attribute that returns the instance to allow for chaining

Authors

       •   Tom Hukins <tom@eborcom.com>

       •   Moritz Onken <onken@netcubed.de>

       •   David McLaughlin <david@dmclaughlin.com>

Bugs

       Please    report    any    bugs     or     feature     requests     on     the     bugtracker     website
       <http://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Attribute-Chained>  or  by  email to bug-moosex-
       attribute-chained at rt.cpan.org.

       When submitting a bug or request, please include a test-file or a patch to  an  existing  test-file  that
       illustrates the bug or desired feature.

perl v5.34.0                                       2022-06-15                    MooseX::Attribute::Chained(3pm)

Description

       MooseX::Attribute::Chained is a Moose Trait which allows for method chaining on accessors by returning
       $self on write/set operations.

Name

       MooseX::Attribute::Chained - Attribute that returns the instance to allow for chaining

Synopsis

         package 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 1

Version

       version 1.0.3

See Also