February 2012
Intermediate to advanced
1184 pages
37h 17m
English
no overloading;
This is one of the few pragmas mostly used to turn something off instead of turning something on. On its own, it turns off all overloaded operations, returning them to their normal behavior for the rest of the lexical scope.
To disable particular overloaded operations, specify the same keys
that overload uses:
no overloading qw(""); # no stringification overloadingTo reenable overloading, do it in reverse:
use overloading; # all back on use overloading @ops; # reenable only some of them
Read now
Unlock full access