std::experimental::ranges::Constructible
来自 cppreference.com
< cpp | experimental | ranges
定义在头文件 <experimental/ranges/concepts> 中 |
||
template< class T, class... Args > concept bool Constructible = |
(范围 TS) | |
Constructible
概念指定类型 T
的变量可以使用给定的参数类型集 Args...
初始化。
Constructible<T, Args...>
和 std::is_constructible<T, Args...>::value 之间不需要有任何包容关系。
[编辑] 另请参阅
(C++11)(C++11)(C++11) |
检查类型是否具有针对特定参数的构造函数 (类模板) |