std::meta::is_base
From cppreference.com
C++
Metaprogramming library
| Type traits (C++11) | ||||
| Compile-time rational arithmetic (C++11) | ||||
| Compile-time integer sequences (C++14) | ||||
(C++14) | ||||
| Compile-time reflection (C++26) |
Reflection library
| Defined in header <meta>
|
||
consteval bool is_base( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a direct base class relationship. Otherwise returns false.
Contents
Parameters
| r | - | a reflection value |
Return value
true if r represents a direct base class relationship; otherwise false.
Example
| This section is incomplete Reason: no example |
See also
(C++26) |
checks if reflection represents a class member (function) [edit] |
(C++26) |
obtains the accessible direct members of the reflected class or namespace (function) [edit] |