Upper bound in vector<pair<int, int>>
Anonymous User
252

pair<int, int> a;
Can I use STL lower bound or upper bound on vector<pair<int, int>> such that the first value is greater than a.first and second value is greater than a.second?

Comments (1)