Aria 2.0.0
C++23 MVVM framework (C++20 minimum) — reactive, coroutine-first, ABI-layered
Loading...
Searching...
No Matches
aria::EqualityComparable Concept Reference

Type that supports == and != (required for change detection). More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept EqualityComparable = requires(const T& a, const T& b) {
{ a == b } -> std::convertible_to<bool>;
{ a != b } -> std::convertible_to<bool>;
}
Type that supports == and != (required for change detection).
Definition concepts.hpp:30

Detailed Description

Type that supports == and != (required for change detection).