|
NAMEObject::Tiny::Lvalue - minimal class builder with lvalue accessorsVERSIONversion 1.083SYNOPSISDefine a class:package Foo; use Object::Tiny::Lvalue qw( bar baz ); 1; Use the class: my $object = Foo->new( bar => 1 ); printf "bar is %s\n", $object->bar; $object->bar = 2; printf "bar is now %s\n", $object->bar; DESCRIPTIONThis is a clone of Object::Tiny, but adjusted to create accessors that return lvalues.You probably want to use Object::Properties instead. AUTHORAristotle Pagaltzis <pagaltzis@gmx.de>COPYRIGHT AND LICENSEThis software is copyright (c) 2015 by Aristotle Pagaltzis.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |