kumi v3.1.0
Exquisite Epidote
Loading...
Searching...
No Matches
kumi::concepts::named_equality_comparable Concept Reference

Concept specifying if two product types are comparable by matching name. More...

#include <kumi/utils/concepts.hpp>

Detailed Description

Concept specifying if two product types are comparable by matching name.

A type T models kumi::named_equality_comparable<T,U> if it's a product_type that satisfies kumi::equivalent<T,U> and if each of its fields satisfies kumi::equality_comparable with the corresponding field in U

Concept definition

template<typename T, typename U>
concept named_equality_comparable = equivalent<T, U> && _::fieldwise_comparable<T, U>
Concept specifying if two types have matching named fields.
Definition concepts.hpp:273
Concept specifying if two product types are comparable by matching name.
Definition concepts.hpp:284