in reply to Exporter, import, and tags w/ double meanings.
You can use Exporter's default methods for that if you define tags in %EXPORT_TAGS, like so:
use vars qw( @EXPORT @EXPORT_OK %EXPORT_TAGS ); @EXPORT = (); @EXPORT_OK = qw( foo bar baz ); %EXPORT_TAGS = ( all => [qw( foo bar baz )], nobaz => [qw( foo bar )], nobar => [qw( foo baz )], nofoo => [qw( bar baz )], );
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Exporter, import, and tags w/ double meanings.
by hossman (Prior) on Sep 25, 2002 at 22:13 UTC |