G-uniX has a post up about a project he’s been working on to bring LINQ-like functionality to ActionScript. He’s been doing a lot of C# work and was really digging how LINQ works.
LINQ is a pretty cool concept that I don’t totally understand all of the nuances for. It essentially makes it really easy to get bits of data. G-uniX’s code sample illustrates it pretty well. You can use SQL-like syntax on an Array or any other data structure:
private var q:GAIQL = new GAIQL()
private var result:Array = q.Call("FROM myarray GET thevalueiwant" ,this);
This would be great to have for AS3 so if you're interested in the project, let him know and he should let you in on the early bits.
TweetRelated posts: