std::experimental::reflect::Callable

Header: <experimental/reflect>

The Callable concept is satisfied if and only if T reflects a function, including constructors and destructors.

# Declarations

template< class T >
concept Callable = ScopeMember<T> && Scope<T> && /* see below */;

(reflection TS)

# Example

This section is incompleteReason: examples