Tie-Scalar-AsArray 0.01

Tie::Scalar::AsArray is designed as a base class for arrayref-based tied
scalars. Tie::StdScalar is similar, except it can only produced
scalarref-based tied scalars. Tie::Scalar doesn't actually give us anything,
except letting us know that we missed an important method.

You only need to override FETCH and STORE. You can also override BUILD to
set up the hashref. This means you no longer have to write TIESCALAR. :)

MAJOR CHANGES
    0.01: first version

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc
command.

    perldoc Tie::Scalar::AsArray

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Tie-Scalar-AsArray

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Tie-Scalar-AsArray

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Tie-Scalar-AsArray

    CPAN Ratings:
        http://cpanratings.perl.org/d/Tie-Scalar-AsArray

COPYRIGHT AND LICENCE

Copyright (C) 2007 Shawn M Moore

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

