http://www.perlmonks.org?node_id=695637


in reply to Re^2: Automatically importing a subroutine for a particular namespace
in thread Automatically importing a subroutine for a particular namespace

All Exporter does is manipulate symbol tables (%PACKAGE::NAME::) ... if you search on cpan, you'll find http://search.cpan.org/~ktat/ExportTo-0.02/lib/ExportTo.pm ...
  • Comment on Re^3: Automatically importing a subroutine for a particular namespace

Replies are listed 'Best First'.
Re^4: Automatically importing a subroutine for a particular namespace
by jacques (Priest) on Jul 05, 2008 at 02:30 UTC
    That looks like exactly what I wanted. Thanks!
      Note that you would have to take care that the exporting takes place at the right time (which would be before the packages are loaded) if you want to have the same semantics as my solution. That's completely possible, of course (at least if you're not making it too complicated), but it may lead to confusion and/or spurious warnings if you're doing it wrong.