std::experimental::reflect::Constructor

Header: <experimental/reflect>

The Constructor concept is satisfied if and only if T reflects a constructor (Note: Some types that satisfy Constructor also satisfy SpecialMemberFunction).

# Declarations

template< class T >
concept Constructor = Callable<T> && RecordMember<T> && /* see below */;

(reflection TS)

# Example

This section is incompleteReason: examples