is_constructible

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

Checks if a type can be constructed from given arguments.

Parameters

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