in reply to Re: How to do "use Mumble ':all' " ala CGI.pm
in thread How to do "use Mumble ':all' " ala CGI.pm

Hmm, yes, but then I wouldn't be getting the same effect as CGI.pm aims for. Instead of every tag set (like the Exporter 5.8.x workarounds suggest), rather allowing you to specify just the most useful subset of all tag sets. Perhaps a better example from CGI.pm would be the ':standard' tag set.
  • Comment on Re^2: How to do "use Mumble ':all' " ala CGI.pm

Replies are listed 'Best First'.
Re^3: How to do "use Mumble ':all' " ala CGI.pm
by Zaxo (Archbishop) on Sep 20, 2004 at 05:45 UTC

    Ok, if you want to aggregate a few tags in a more general class, use a slice,

    $EXPORT_TAGS{'standard'} = [map {@$_} @EXPORT_TAGS{qw/the top tags/}];

    After Compline,
    Zaxo