std::experimental::reflect::Function

Header: <experimental/reflect>

The Function concept is satisfied if and only if T reflects a function, excluding constructors and destructors.

# Declarations

template< class T >
concept Function = Callable<T> && Typed<T> && /* see below */;

(reflection TS)

# Example

This section is incompleteReason: examples