std::experimental::reflect::Destructor
来自cppreference.com
< cpp | experimental | reflect
在标头 <experimental/reflect> 定义
|
||
template< class T > concept Destructor = Callable<T> && SpecialMemberFunction<T> && /* 见下文 */; |
(反射 TS) | |
当且仅当 T 反射析构函数时,满足 Destructor
概念。
示例
本节未完成 原因:examples |
参阅
本节未完成 原因:templatization |