Struct is_callable< Fun(Args...)>
Synopsis
#include <include/internal/catch_meta.hpp>
template <typename Fun, typename... Args>
struct is_callable<Fun(Args...)> : decltype(is_callable_tester::test<Fun, Args...>(0))
Description
No description yet.
Inheritance
Ancestors: decltypeis_callable_tester::test< Fun, Args... >
Source
Lines 29-30 in include/internal/catch_meta.hpp.
template <typename Fun, typename... Args>
struct is_callable<Fun(Args...)> : decltype(is_callable_tester::test<Fun, Args...>(0)) {};