Namespaces
Variants

std::meta::is_type_alias

From cppreference.com
< cpp | meta
 
 
 
Reflection library
 
Reflection types and queries
Type properties
Type property queries
 
Defined in header <meta>
consteval bool is_type_alias( std::meta::info r );
(since C++26)

Returns true if r represents a type alias. Otherwise returns false.

Parameters

r - a reflection value

Return value

true if r represents a type alias; otherwise false.

Notes

A specialization of an alias template is a type alias.

Example

#include <meta>

using Int = int;

static_assert(std::meta::is_type_alias(^^Int));
static_assert(!std::meta::is_type_alias(^^int));

int main() {}

See also

(C++26)
checks if reflection represents a type
(function) [edit]
checks if reflected entity is a alias template
(function) [edit]