Tagged Questions
9
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 ...
5
votes
2answers
107 views
Boost::asio what is this kind of strange coding style?
I am about to debug something within my boost asio socket communication. And found this piece of code inside of the asio library (found in boost/asio/impl/write.hpp line 169 (boost 1.47) ):
switch ...