table of contents
Mo::importer(3) | User Contributed Perl Documentation | Mo::importer(3) |
Name¶
Mo::importer - Write your own import() extension
Synopsis¶
package MyMo; sub importer { my ($caller, @args) = @_; ... } use Mo qw[importer other features];
Description¶
Sometimes you need to add your own logic during Mo::import time. This feature lets you do that by defining your own "importer" subroutine. It will pass you the original caller pkg and the args passed in.
Note¶
You need to define the "importer" sub before you "use Mo ...", for (hopefully) obvious reasons. :\
2016-07-08 | perl v5.40.0 |