While using std::for_each algorithm how do I break when a certain condition is satisfied?
While using std::for_each algorithm how do I break when a certain condition is satisfied?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
std::find_ifalgorithm, which will stop and return the iterator to the first element where the predicate condition applied to returnstrue. So your predicate should be changed to return a boolean as the continue/break condition.However, this is a hack, so you can use the algorithms.
Another way is to use BOOST_FOREACH.