Tagged Questions
3
votes
1answer
273 views
boost lambda collection size evaluation
I have a function of the form:
void DoSomething(const boost::function<bool ()>& condition, other stuff);
This function does some work and returns only when the condition is true. The ...