Using LINQ in .Net I can select elements from an array that meet certain criteria, for example, from an array of People:
var cleverPeople = People.Where(o=>o.IQ>110);
Is there anything similar for NSMutableArray? I have a lot of elements in it, and listing it with a loop is a pretty expensive execution.
objective-c cocoa
jdee
source share