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