std::meta::is_variable
From cppreference.com
C++
Reflection library
| Defined in header <meta>
|
||
consteval bool is_variable( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a variable. Otherwise returns false.
Contents
Parameters
| r | - | a reflection value |
Return value
true if r represents a variable; otherwise false.
Example
| This section is incomplete Reason: no example |
See also
(C++26) |
checks if reflection represents a static object (function) [edit] |
(C++26) |
checks if reflection represents a (scalar) value (function) [edit] |