diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-25 12:51:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-25 12:51:06 +0000 |
commit | b56d9fe005fe034e705647e9c5c4b8afbc619b8f (patch) | |
tree | bf33eb2108d7438e3688da98b85744182a65899e /MDK/Common.pm | |
parent | aefe7b6ac40fc48c20f3c878e34913d1431bc2b8 (diff) | |
download | perl-MDK-Common-b56d9fe005fe034e705647e9c5c4b8afbc619b8f.tar perl-MDK-Common-b56d9fe005fe034e705647e9c5c4b8afbc619b8f.tar.gz perl-MDK-Common-b56d9fe005fe034e705647e9c5c4b8afbc619b8f.tar.bz2 perl-MDK-Common-b56d9fe005fe034e705647e9c5c4b8afbc619b8f.tar.xz perl-MDK-Common-b56d9fe005fe034e705647e9c5c4b8afbc619b8f.zip |
add documentation
Diffstat (limited to 'MDK/Common.pm')
-rw-r--r-- | MDK/Common.pm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/MDK/Common.pm b/MDK/Common.pm index dbc161c..5819b01 100644 --- a/MDK/Common.pm +++ b/MDK/Common.pm @@ -1,3 +1,45 @@ +=head1 NAME + +MDK::Common - miscellaneous functions + +=head1 SYNOPSIS + + use MDK::Common; + # exports all functions, equivalent to + + use MDK::Common::DataStructure qw(:all); + use MDK::Common::File qw(:all); + use MDK::Common::Func qw(:all); + use MDK::Common::Math qw(:all); + use MDK::Common::String qw(:all); + use MDK::Common::System qw(:all); + use MDK::Common::Various qw(:all); + +=head1 DESCRIPTION + +C<MDK::Common> is a collection of packages containing various simple functions: +L<MDK::Common::DataStructure>, +L<MDK::Common::File>, +L<MDK::Common::Func>, +L<MDK::Common::Globals>, +L<MDK::Common::Math>, +L<MDK::Common::String>, +L<MDK::Common::System>, +L<MDK::Common::Various>. + +=head1 EXPORTS + +C<MDK::Common> exports the functions in the package mentioned above. See their +manpage for more. + +=head1 COPYRIGHT + +Copyright (c) 2001 MandrakeSoft <pixel@mandrakesoft.com>. All rights reserved. +This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +=cut + package MDK::Common; use MDK::Common::DataStructure qw(:all); |