std::experimental::reflect::Function
来自cppreference.com
| 在标头 <experimental/reflect> 定义
|
||
| |
(反射 TS) | |
当且仅当 T 反射不包括构造函数和析构函数在内的函数时,满足 Function 概念。
示例
| 本节未完成 原因:examples |
参阅
| 本节未完成 原因:templatization |
| 概念 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 元对象操作 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
| 在标头 <experimental/reflect> 定义
|
||
template< class T >
concept Function = Callable<T> && Typed<T> && /* 见下文 */;
|
(反射 TS) | |
当且仅当 T 反射不包括构造函数和析构函数在内的函数时,满足 Function 概念。
| 本节未完成 原因:examples |
| 本节未完成 原因:templatization |