Namespaces
Variants

std::meta::is_namespace_member

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

Returns true if r represents a namespace member. Otherwise returns false.

Parameters

r - a reflection value

Return value

true if r represents a namespace member; otherwise false.

Example

#include <meta>

namespace A { int x; }

static_assert(std::meta::is_namespace_member(^^A::x));

int y;
static_assert(std::meta::is_namespace_member(^^y));

struct S
{
    int x;  
};
static_assert(!std::meta::is_namespace_member(^^S::x));

int main() {}

See also

obtains the accessible direct members of the reflected class or namespace
(function) [edit]
checks if reflection represents a class member
(function) [edit]