std::meta::is_namespace_member
From cppreference.com
| 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
Run this code
#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
(C++26) |
obtains the accessible direct members of the reflected class or namespace (function) |
(C++26) |
checks if reflection represents a class member (function) |