Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2021. The current version is 1.91.0.
Conditionally run suites in a container.
template< class SequenceContainer, class Pred> bool run_each_if( SequenceContainer const& c, Pred pred = Pred{});
pred will be called as:
bool pred(suite_info const&);
true if any conditions failed.