std::experimental::reflect::GlobalScope
From cppreference.com
< cpp | experimental | reflect
Defined in header <experimental/reflect>
|
||
template< class T > concept GlobalScope = Namespace<T> && /* see below */; |
(reflection TS) | |
The GlobalScope
concept is satisfied if and only if T reflects the global namespace (Note: Any such T does not satisfy ScopeMember
).
[edit] Example
This section is incomplete Reason: examples |
[edit] See also
This section is incomplete Reason: templatization |