Given a container of boolean values (An example is std::vector<bool>), is there a standard function that returns true if all the values are true ("and") or true if at least one value is true ("or"), with short circuit evalutation ?
I digged trough www.cplusplus.com this morning but couldn't find anything close.
<algorithm>and<functional>for tons of convenience functions and classes whose implementation is trivial. – Konrad Rudolph Jun 28 '11 at 13:02std::stringbecause he knows how to do that himself. Sure he does, but as a result his code is often unmaintainable and cluttered with trivial tricks. – ereOn Jun 28 '11 at 13:05memcpyorstd::copy? After all, it is just a singleforloop. – ereOn Jun 28 '11 at 14:24std::all_ofandstd::any_of:) Moreover, if these simple functions are inlinable (which they surely are), what size difference with "rolling out my own version of these functions" does it make anyway ? – ereOn Jun 28 '11 at 14:36