Namespaces
Variants

std::meta::is_defaulted

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_defaulted( std::meta::info r );
(since C++26)

Returns true if r represents a defaulted function. Otherwise returns false.

Parameters

r - a reflection value

Return value

true if r represents a defaulted function; otherwise false.

Example

#include <compare>
#include <meta>

struct Base
{
    bool operator==(const Base&) const;
    std::strong_ordering operator<=>(const Base&) const = delete;
};

bool Base::operator==(const Base&) const = default;

struct Derived : public Base
{
    std::strong_ordering operator<=>(const Derived&) const = default; // implicitly deleted
    // operator== is implicitly defaulted due to the defaulted definition of operator<=>
};

static_assert(std::meta::is_defaulted(^^Base::operator==));
static_assert(!std::meta::is_defaulted(^^Base::operator<=>));
static_assert(std::meta::is_defaulted(^^Derived::operator==));
static_assert(std::meta::is_defaulted(^^Derived::operator<=>));

int main() {}

See also

checks if reflection represents a function
(function) [edit]
checks if reflection represents a user-provided function
(function) [edit]