Namespaces
Views
std::meta::is_operator_function
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_operator_function( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a function that is an operator function (operator overload). Otherwise returns false.
Contents
Parameters
| r | - | a reflection value |
Return value
true if r represents an operator function; otherwise false.
Example
Run this code
#include <meta>
struct S
{
void foo();
operator int();
S& operator()(int);
};
static_assert(!is_operator_function(^^S::foo));
static_assert(!is_operator_function(^^S::operator int));
static_assert(is_operator_function(^^S::operator()));
int main() {}
See also
(C++26) |
checks if reflection represents a function (function) [edit] |
(C++26) |
checks if reflection represents a conversion function (function) [edit] |
| checks if reflected entity is an operator function template (function) [edit] |
