Archive for January, 2007

Memoization in Actionscript

Sunday, January 14th, 2007
I love this programming technique, mostly because it is so easy to just drop into your code and instantly trade execution time for memory usage. More information can be found here. [as]package{ public class Memo{ static public function Memoize(obj:*,func:Function):Function{ // ***