in reply to How to do "use Mumble ':all' " ala CGI.pm
You could leave off the 'all' key at first, and then set it up with the values from %EXPORT_TAGS,
%EXPORT_TAGS = ( hdr_lens => [qw( LIS_TIF_HDR_LEN LIS_TIF_HDR_DATA_MAX LIS_PHY_HDR_LEN LIS_LR_HDR_LEN )], phyhdr_flags => [qw( . . . . )], lr_types => [qw( . . . . )], # . . . . ); $EXPORT_TAGS{'all'} = [map {@$_} values %EXPORT_TAGS];
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to do "use Mumble ':all' " ala CGI.pm
by shenme (Priest) on Sep 20, 2004 at 05:13 UTC | |
by Zaxo (Archbishop) on Sep 20, 2004 at 05:45 UTC |