Archive for September, 2009
Curry: partial functions in Actionscript 3
I needed curry() and bind() in Actionscript 3, because I was porting a Javascript application that was built using PrototypeJS 1.6 to Flex and the application heavily used these functions. I came up with the following Actionscript / Flex code:
bindAndCurry.as package { public function bindAndCurry(…a):Function { return function(…b):* { return a.shift().apply(a.shift(), a.concat(b)) } } } BindAndCurryTest.as package { import flash.display.Sprite; public class BindAndCurryTest extends Sprite […]
Posted: September 14th, 2009 under Uncategorized, Web.
Comments: none