std::meta::is_conversion_function
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_conversion_function( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a function that is a conversion function. Otherwise returns false.
Contents
Parameters
| r | - | a reflection value |
Return value
true if r represents a conversion function; otherwise false.
Example
Run this code
#include <meta>
struct S
{
int foo();
operator int();
int operator()();
};
static_assert(!is_conversion_function(^^S::foo));
static_assert(is_conversion_function(^^S::operator int));
static_assert(!is_conversion_function(^^S::operator()));
int main() {}
See also
(C++26) |
checks if reflection represents a function (function) |
(C++26) |
checks if reflection represents an operator overload (function) |
| checks if reflected entity is a conversion function template (function) |