Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Class::Accessor::Lvalue

Name Class::Accessor::Lvalue
Version 0.11
Located at /usr/local/share/perl5
File /usr/local/share/perl5/Class/Accessor/Lvalue.pm
Is Core No
Search CPAN for this module Class::Accessor::Lvalue
Documentation Class::Accessor::Lvalue
Module Details Class::Accessor::Lvalue

NAME

Class::Accessor::Lvalue - create Lvalue accessors


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


DESCRIPTION

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


CAVEATS

Though the Class::Accessor manpage 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 explictly 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 the Class::Accessor::Lvalue::Fast manpage which is simpler and much faster.


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.


COPYRIGHT

Copyright (C) 2003 Richard Clamp. All Rights Reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


SEE ALSO

the Class::Accessor manpage, the Class::Accessor::Lvalue::Fast manpage

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024