std::meta::is_namespace_alias
From cppreference.com
| Defined in header <meta>
|
||
consteval bool is_namespace_alias( std::meta::info r );
|
(since C++26) | |
Returns true if r represents a namespace alias. Otherwise returns false.
Contents
Parameters
| r | - | a reflection value |
Return value
true if r represents a namespace alias; otherwise false.
Example
Run this code
#include <meta>
namespace a::b::c { }
namespace abc = a::b::c;
static_assert(!is_namespace_alias(^^a::b::c));
static_assert(is_namespace_alias(^^abc));
int main() {}
See also
(C++26) |
checks if reflection represents a namespace (function) |
(C++26) |
checks if reflection represents a namespace member (function) |
(C++26) |
returns a reflection of the enclosing namespace (function) |