std::experimental::reflect::LambdaCapture
来自cppreference.com
< cpp | experimental | reflect
在标头 <experimental/reflect> 定义
|
||
template< class T > concept LambdaCapture = Variable<T> && /* 见下文 */; |
(反射 TS) | |
当且仅当 T 反射由捕获列表或默认捕获所引入的 lambda 捕获时,满足 LambdaCapture
概念。(注意:LambdaCapture
的 Scope
为其直接外围 Lambda
)。
示例
本节未完成 原因:examples |
参阅
本节未完成 原因:templatization |