Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > fcfb7e855fd31090a3ae7d82e146c761 > files > 6

perl-Hash-AsObject-0.130.0-3.mga4.noarch.rpm

NAME

Hash::AsObject - hashes with accessors/mutators


SYNOPSIS

    $h = Hash::AsObject->new({'foo'=>123});
    $foo = $h->foo;     # 123
    $h->bar(456);
    $bar = $h->bar;     # 456
    $bar = $h->{'bar'}; # 456


DESCRIPTION

See the POD documentation in lib/Hash/AsObject.pm, or
use perldoc.


INSTALL

Install it in the usual way:

    perl Makefile.PL
    make
    make test
    [sudo] make install


COPYRIGHT

Copyright 2003-2004 Paul M. Hoffman. All rights reserved.

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