std::experimental::reflect::Enumerator
来自 cppreference.com
< cpp | experimental | reflect
定义在头文件 <experimental/reflect> 中 |
||
template< class T > concept Enumerator = Typed<T> && ScopeMember<T> && /* see below */; |
(反射 TS) | |
当且仅当 T 反映一个枚举器时,Enumerator
概念才得到满足(注意:对于非作用域枚举类型,Enumerator
的 Scope
也是其类型)。
[编辑] 示例
本节尚未完善 原因:示例 |
[编辑] 另请参阅
本节尚未完善 原因:模板化 |