This hash is used by large modules
like CGI or POSIX to create higher-level groupings of related import
symbols. Its values are references to arrays of symbol names, all of
which must be in either @EXPORT or
@EXPORT_OK. Here's a sample initialization:
%EXPORT_TAGS = (
Functions => [ qw(F1 F2 Op_Func) ],
Variables => [ qw(@List %Table) ],
);
An import symbol with a leading colon means to import a whole group
of symbols. Here's an example:
use YourModule qw(:Functions %Table);
That pulls in all symbols from:
@{ $YourModule::EXPORT_TAGS{Functions} },
that is, it pulls in the F1,
F2, and Op_Func functions and
then the %Table hash.
Although you don't list it in %EXPORT_TAGS, the
implicit tag :DEFAULT automatically means
everything in @EXPORT.
You don't have to have all those variables defined in your module.
You just need the ones that you expect people to be able to use.