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


in reply to Re^12: The Most Essential Perl Development Tools Today (negative)
in thread The Most Essential Perl Development Tools Today

I suggest that if profiling has shown that you're calling a subroutine enough times that that the removal of a return makes any measurable difference in execution time, then the subroutine probably has almost no code in it at all, and the solution is to inline the tiny amount of code in the subroutine and remove the calling overhead entirely.

xoxo,
Andy