Namespaces
Variants

std::meta::is_namespace_alias

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

Parameters

r - a reflection value

Return value

true if r represents a namespace alias; otherwise false.

Example

#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

checks if reflection represents a namespace
(function) [edit]
checks if reflection represents a namespace member
(function) [edit]
returns a reflection of the enclosing namespace
(function) [edit]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.