is_noexcept_constructible

template <typename T, typename... Args>
concept is_noexcept_constructible;

Checks if a type can be constructed from arguments without throwing.

Parameters

Name Description
T The type to construct.
Args The argument types.