mutable
A Database System for Research and Fast Prototyping
Loading...
Searching...
No Matches
m::is_invocable Concept Reference

Check whether. More...

#include <concepts.hpp>

Concept definition

template<typename Callback, typename T>
concept m::is_invocable = requires (Callback &&callback, T value) {
std::invoke(std::forward<Callback>(callback), value);
}
Check whether.
Definition: concepts.hpp:214
T(x)

Detailed Description

Check whether.

Template Parameters
Callbackcan be invoked by given parameter
T.

Definition at line 214 of file concepts.hpp.