std::experimental::reflect::Namespace

Header: <experimental/reflect>

The Namespace concept is satisfied if and only if T reflects a namespace including the global namespace (Note: Any such T that does not reflect the global namespace also satisfies ScopeMember).

# Declarations

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

(reflection TS)

# Example

This section is incompleteReason: examples