Equality for any described type.
Declared in <mrdocs/Support/Reflection/CompareReflectedType.hpp>
template<typename T>
requires DescribedComparable<T>
bool
operator==(
T const& a,
T const& b);
Needed because removing a defaulted member operator<=>() also removes the implicitly-generated operator==().
true if the objects are equal, false otherwise
| Name | Description |
|---|---|
| a | The left operand |
| b | The right operand |