List::Object was inspired by several other modules Array for having an object-oriented interface to perl's array functions. Class::MethodMaker for its auto-generated methods that do that same thing with its "object_list" functionality (hence the name of this package), as well as the fact that it enforces the declared datatype on its members. And I like the generic Iterator interface for woking with lists.
In a nutshell, List::Object has three main features: * Object-oriented interface to perl's array methods * Implements the Iterator interface for the list * Enforces datatypes of list members.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
Carp
COPYRIGHT AND LICENCE
Put the correct copyright and licence information here.
Copyright (C) 2004 by Steven Hilton <mshiltonj@mshiltonj.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.3 or, at your option, any later version of Perl 5 you may have available.