Search Results

1
vote

How do I return hundreds of values from a C++ function?

One other option is boost::tuple: http://www.boost.org/doc/libs/1_38_0/libs/tuple/doc/tuple_users …
15
votes

How do I find the largest int in a std::set<int> ?

What comparator are you using? For the default this will work: if(!myset.empty()) *myset.rbegin(); else //the set is empty This will also be consta …