NexusForce
1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
载入中...
搜索中...
未找到
constructible_from 概念参考
概念约束
检查类型是否可以使用指定参数构造
更多...
#include <
concepts.hpp
>
概念定义
template
<
typename
T,
typename
... Args>
concept
constructible_from
=
is_constructible_v
<T, Args...>
constructible_from
检查类型是否可以使用指定参数构造
定义
concepts.hpp:96
is_constructible_v
NEFORCE_INLINE17 constexpr bool is_constructible_v
is_constructible的便捷变量模板
定义
type_traits.hpp:2353
详细描述
检查类型是否可以使用指定参数构造
模板参数
T
要构造的类型
Args
构造参数类型
在文件
concepts.hpp
第
96
行定义.
constructible_from
制作者
1.16.0