Tagged Questions
10
votes
4answers
9k views
How to check whether STL iterator points at anything?
I want to do something like this:
std::vector<int>::iterator it;
// /cut/ search for something in vector and point iterator at it.
if(!it) //check whether found
do_something();
But ...