Namespaces
Variants

std::meta::is_mutable_member

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

Returns true if r represents a mutable non-static data member. Otherwise returns false.

Parameters

r - a reflection value

Return value

true if r represents a mutable non-static data member; otherwise false.

Example

#include <meta>

struct A
{
    static int a;
    mutable int b;
};

static_assert(!std::meta::is_mutable_member(^^A::a));
static_assert(std::meta::is_mutable_member(^^A::b));

int main() {}

See also

checks if reflection represents a non-static data member
(function) [edit]