std::experimental::reflect::Lambda

Header: <experimental/reflect>

The Lambda concept is satisfied if and only if T reflects a closure object (excluding generic lambdas).

# Declarations

template< class T >
concept Lambda = Type<T> && Scope<T> && /* see below */;

(reflection TS)

# Example

This section is incompleteReason: examples