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

Class::Accessor::Lvalue - create Lvalue accessors

Author

       Richard Clamp <richardc@unixbeard.net> with many thanks to Yuval  Kogman  for  helping  with  the  groovy
       lvalue tie magic used in the main class.

Caveats

       •   Though  Class::Accessor  mutators  allows  for  the  setting  of multiple values to an attribute, the
           mutators that this module creates handle single scalar values only.  This should not be too much of a
           hinderance as you can still explicitly use an anonymous array.

       •   Due to the hoops we have to jump through to preserve the Class::Accessor ->get  and  ->set  behaviour
           this  module is potentially slow.  Should you not need the flexibility granted by the ->get and ->set
           methods, it's highly reccomended that you use Class::Accessor::Lvalue::Fast which is simpler and much
           faster.

Description

       This module subclasses Class::Accessor in order to provide lvalue accessor makers.

Name

       Class::Accessor::Lvalue - create Lvalue accessors

See Also

       Class::Accessor, Class::Accessor::Lvalue::Fast

perl v5.34.0                                       2022-06-10                       Class::Accessor::Lvalue(3pm)

Synopsis

        package Foo;
        use base qw( Class::Accessor::Lvalue );
        __PACKAGE__->mk_accessors(qw( bar ))

        my $foo = Foo->new;
        $foo->bar = 42;
        print $foo->bar; # prints 42

See Also