CAF 0.17.6
|
Checks wheter F
is callable with arguments of types Ts...
.
More...
#include <type_traits.hpp>
Public Types | |
using | type = decltype(sfinae< F >(nullptr)) |
Static Public Member Functions | |
template<class U > | |
static auto | sfinae (U *) -> decltype((std::declval< U & >())(std::declval< Ts >()...), std::true_type()) |
template<class U > | |
static auto | sfinae (...) -> std::false_type |
Static Public Attributes | |
static constexpr bool | value = type::value |
Checks wheter F
is callable with arguments of types Ts...
.