folly::is_nothrow_invocable

Trait testing whether F is nothrow-invocable with A...; mimics std::is_nothrow_invocable.

Synopsis

Declared in <folly/functional/Invoke.h>

template<
    typename F,
    typename... A>
struct is_nothrow_invocable
    : std::bool_constant<is_nothrow_invocable_v<F, A...>>

Base Classes

NameDescription
std::bool_constant<is_nothrow_invocable_v<F, A...>>