in reply to Re: Re: Automatically export all subs in a module
in thread Automatically export all subs in a module

To be even more generic:
@EXPORT = do { no strict 'refs'; my $pkg = \%{__PACKAGE__."::"}; grep exists &{$$pkg{$_}}, keys %$pkg; };