Skip to content
Prev 69820 / 398525 Next

parsing speed

Federico Calboli wrote:
The parsing only happens once when you define the functions, and is 
(almost always) a negligible part of total execution time.  I think 
you're really worried about execution time.  You'll probably get more 
execution time with a separate function because function calls take time.

However, my guess is that putting F1 inline won't make enough difference 
to notice.

Duncan