...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::scope::make_scope_fail — Creates a scope fail with given callable function objects.
// In header: <boost/scope/scope_fail.hpp> template<typename F, typename C> scope_fail< typename std::decay< F >::type, typename std::decay< C >::type > make_scope_fail(F && func, C && cond, bool active = true);
Effects: Constructs a scope guard as if by calling
.scope_fail
< std::decay_t< F >, std::decay_t< C > >( std::forward< F >(func), std::forward< C >(cond), active)
Parameters: |
|