std::meta::is_aggregate_type
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_aggregate_type( std::meta::info r );
|
(since C++26) | |
Returns true if r represents an aggregate type. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents an aggregate type; otherwise false.
Exceptions
Throws std::meta::exception if r does not represent a type or type alias.
Example
Run this code
#include <meta>
int main() {}
See also
(C++17) |
checks if a type is an aggregate type (class template) |