• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Hash/H09-Dec-2009-35696

t/H09-Dec-2009-301187

ChangesH A D09-Dec-20092.2 KiB10187

MANIFESTH A D16-Feb-2009252 1817

MANIFEST.SKIPH A D16-Feb-2009145 1413

META.ymlH A D09-Dec-2009465 2019

Makefile.PLH A D18-Oct-2008250 118

READMEH A D12-Mar-2004589 3821

README

1NAME
2
3Hash::AsObject - hashes with accessors/mutators
4
5
6SYNOPSIS
7
8    $h = Hash::AsObject->new({'foo'=>123});
9    $foo = $h->foo;     # 123
10    $h->bar(456);
11    $bar = $h->bar;     # 456
12    $bar = $h->{'bar'}; # 456
13
14
15DESCRIPTION
16
17See the POD documentation in lib/Hash/AsObject.pm, or
18use perldoc.
19
20
21INSTALL
22
23Install it in the usual way:
24
25    perl Makefile.PL
26    make
27    make test
28    [sudo] make install
29
30
31COPYRIGHT
32
33Copyright 2003-2004 Paul M. Hoffman. All rights reserved.
34
35This program is free software; you can redistribute it
36and modify it under the same terms as Perl itself.
37
38