folly::fallback::is_nothrow_convertible

A trait type that is true when From is nothrow-convertible to To.

Synopsis

Declared in <folly/Traits.h>

template<
    typename From,
    typename To>
struct is_nothrow_convertible
    : std::bool_constant<is_nothrow_convertible_v<From, To>>

Base Classes

NameDescription
std::bool_constant<is_nothrow_convertible_v<From, To>>