in reply to package function calling
(2) When you DO find a serious performance problem, attack the worst performance areas first. How do you know what's the worst? You Devel::Profile the code as a whole and Benchmark alternatives. Profiling and Benchmarking is the only sane way of discovering what portion of your program is taking the most time. Update: clarified myself reflecting L~R's corrections.
(3) The specific feature you mention should have almost no effect on execution time, since the function name is entered into both symbol tables. The only difference I would guess would be how long it took the parser to parse the extra four tokens.
--
[ e d @ h a l l e y . c c ]
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: package function calling
by BarMeister (Beadle) on Jul 12, 2005 at 13:50 UTC | |
by halley (Prior) on Jul 12, 2005 at 14:15 UTC | |
Re^2: package function calling
by Limbic~Region (Chancellor) on Jul 12, 2005 at 13:56 UTC |