命名空间
变体
操作

std::experimental::ranges::Constructible

来自 cppreference.com
< cpp‎ | experimental‎ | ranges
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
概念库
核心语言概念
                              
对象概念
                              
                              
比较概念
可调用概念
                                        
                              
URNG 概念
 
定义在头文件 <experimental/ranges/concepts>
template< class T, class... Args >

concept bool Constructible =

    Destructible<T> && std::is_constructible<T, Args...>::value;
(范围 TS)

Constructible 概念指定类型 T 的变量可以使用给定的参数类型集 Args... 初始化。

Constructible<T, Args...>std::is_constructible<T, Args...>::value 之间不需要有任何包容关系。

[编辑] 另请参阅

检查类型是否具有针对特定参数的构造函数
(类模板) [编辑]