Loading...
Searching...
No Matches
bbm::has_constforeach_lambda Concept Reference

Concept to check if a lambda functions meets the required signature. More...

#include <constforeach.h>

Concept definition

template<typename F, typename... T>
concept bbm::has_constforeach_lambda = requires(F&& f)
{
(f.template operator()<T>(), ...);
}
Concept to check if a lambda functions meets the required signature.
Definition: constforeach.h:36

Detailed Description

Concept to check if a lambda functions meets the required signature.