std::experimental::reflect::Function
Min standard notice:
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