|
NameMo::importer - Write your own import() extensionSynopsispackage MyMo; sub importer { my ($caller, @args) = @_; ... } use Mo qw[importer other features]; DescriptionSometimes 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.NoteYou need to define the "importer" sub before you "use Mo ...", for (hopefully) obvious reasons. :\
Visit the GSP FreeBSD Man Page Interface. |