- Example Usage
static_assert (
invocable_r<
decltype ([] (int) {
return ""; }),
const char*,
int>);
static_assert (
invocable_r<
decltype ([] (
char*,
char*) {}),
void,
char*,
char*>);
- Note
- used STL-style name since so closely related to invocable - which is part of the standard library.
Definition at line 160 of file Concepts.h.