std::experimental::reflect::Type

Header: <experimental/reflect>

The Type concept is satisfied if and only if T reflects a type.

# Declarations

template< class T >
concept Type = Named<T> && ScopeMember<T> && /* see below */;

(reflection TS)

# Example

This section is incompleteReason: examples