Namespaces
Variants

std::meta::is_literal_operator_template

From cppreference.com
< cpp | meta
 
 
 
Reflection library
 
Reflection types and queries
Type properties
Type property queries
 
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

#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

checks if reflected entity is a template
(function) [edit]
checks if reflection represents a user-defined literal operator
(function) [edit]