hi Flash gurus!
I've read in various places that it is faster to assign a function to a variable
e.g var mround:Function = Math.round()
But I dont understand how that can be faster. Doesn't it still have to look up Math.round() when mround is called or does it copy the code from Math.round() into 'mround'?
I've accepted that it's faster - I just want to know why.
