std::meta::is_function_parameter
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_function_parameter( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a function parameter. Otherwise returns false.
Parameters
| r | - | a reflection value |
Return value
true if r represents a function parameter; otherwise false.
Example
| This section is incomplete Reason: no example |
See also
(C++26) |
checks if reflection represents an explicit object parameter (function) |
(C++26) |
checks if reflected function parameter has a default argument (function) |
(C++26) |
obtains the parameters of the reflected function (function) |