std::experimental::reflect::Scope
来自cppreference.com
< cpp | experimental | reflect
在标头 <experimental/reflect> 定义
|
||
template< class T > concept Scope = Object<T> && /* 见下文 */; |
(反射 TS) | |
当且仅当 T
反射命名空间(包括全局命名空间)、类、枚举、函数或闭包类型时,满足 Scope
概念(注意:任何不反射全局命名空间的这种 T
也满足 ScopeMember
)。
示例
本节未完成 原因:examples |
参阅
本节未完成 原因:templatization |