]> git.vpit.fr Git - perl/modules/autovivification.git/blob - README
Initial import
[perl/modules/autovivification.git] / README
1 NAME
2     autovivification - Lexically disable autovivification.
3
4 VERSION
5     Version 0.01
6
7 SYNOPSIS
8         no autovivification;
9         my $x;
10         $x->{foo} = 1; # croaks
11
12 DESCRIPTION
13 METHODS
14   "unimport"
15     Magically called when "no autovivification" is encountered. Turns the
16     module on.
17
18   "import"
19     Magically called when "use autovivification" is encountered. Turns the
20     module off.
21
22 DEPENDENCIES
23     perl 5.8.
24
25     XSLoader (standard since perl 5.006).
26
27 AUTHOR
28     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
29
30     You can contact me by mail or on "irc.perl.org" (vincent).
31
32 BUGS
33     Please report any bugs or feature requests to "bug-autovivification at
34     rt.cpan.org", or through the web interface at
35     <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=autovivification>. I
36     will be notified, and then you'll automatically be notified of progress
37     on your bug as I make changes.
38
39 SUPPORT
40     You can find documentation for this module with the perldoc command.
41
42         perldoc autovivification
43
44     Tests code coverage report is available at
45     <http://www.profvince.com/perl/cover/autovivification>.
46
47 COPYRIGHT & LICENSE
48     Copyright 2009 Vincent Pit, all rights reserved.
49
50     This program is free software; you can redistribute it and/or modify it
51     under the same terms as Perl itself.
52