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