std::meta::is_volatile_type
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_volatile_type( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a volatile-qualified type. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents a volatile-qualified type; otherwise false.
Exceptions
Throws std::meta::exception if r does not represent a type or type alias.
Example
| This section is incomplete Reason: no example |
See also
(C++26) |
checks if reflection represents a volatile type or a function type with volatile qualifier (function) |
(C++11) |
checks if a type is volatile-qualified (class template) |