I'd like to use an STL set in my iPhone app (which is written in Objective-C in XCode). How do I include set and/or use the standard namespace?
In C++ I'd do this:
#include<set>
using namespace std;
// use the set<T> somewhere down here...
How can I do this in Objective-C?