std::experimental::reflect::Typed
From cppreference.com
< cpp | experimental | reflect
Defined in header <experimental/reflect>
|
||
template< class T > concept Typed = Named<T> && /* see below */; |
(reflection TS) | |
The Typed
concept is satisfied if and only if T reflects an entity with a type.
Example
This section is incomplete Reason: examples |
See also
This section is incomplete Reason: templatization |