in reply to Exporting symbols from another package
Perhaps the simplest way would be to alias the functions in the Foo namespace:
*transform_one = *Foo::Transforms::transform_one; *transform_two = *Foo::Transforms::transform_two;
And then your exports become just:
our @EXPORT_OK = qw( transform_one transform_two );
But then that questions why you've put those functions into a different namespace in the first place?
|
---|