◐ Shell
clean mode source ↗

std::constructible_from - cppreference.com

提供: cppreference.com

<tbody> </tbody>

template < class T, class... Args > concept constructible_from = std::destructible<T> && std::is_constructible_v<T, Args...>;

(C++20以上)

constructible_from コンセプトは T 型の変数が与えられた引数型のセット Args... を使用して初期化できることを指定します。

関連項目