autouse(3p) Perl Programmers Reference Guide autouse(3p)
autouse(3p) Perl Programmers Reference Guide autouse(3p) # autouse(3p) Perl Programmers Reference Guide autouse(3p) NNAAMMEE # autouse - postpone load of modules until a function is used SSYYNNOOPPSSIISS # use autouse 'Carp' => qw(carp croak); carp "this carp was predeclared and autoused "; DDEESSCCRRIIPPTTIIOONN # If the module "Module" is already loaded, then the declaration use autouse 'Module' => qw(func1 func2($;$)); is equivalent to use Module qw(func1 func2); if "Module" defines ffuunncc22(()) with prototype "($;$)", and ffuunncc11(()) has no prototypes. ...