NAME
all - use an entire list of modules or fail
SYNOPSIS
use all 'Foo', 'Bar', 'Baz';
DESCRIPTION
Using the same types arguments as 'use first', this uses all of them or croaks.
The SYNOPSIS is the same as doing
use Foo;
use Bar;
use Baz;
See first to see what arguments and flags it can take.
SEE ALSO
AUTHOR
Daniel Muey, http://drmuey.com/cpan_contact.pl
COPYRIGHT AND LICENSE
Copyright (C) 2007 by Daniel Muey
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.6 or, at your option, any later version of Perl 5 you may have available.