namespace std {
template<class R, class T, class U>
concept equivalence_relation = relation<R, T, U>;
}
概要
equivalence_relation
は、型T, U
の間の二項関係R
が同値関係であることを表すコンセプトである。
モデル
relation
のモデルである二項関係R
は、その引数型T, U
の間の同値関係を示す場合に限って、equivalence_relation
のモデルである。
例
#include <iostream>
#include <concepts>
template<typename R, typename T, typename U>
requires std::equivalence_relation<R, T, U>
void f(const char* name, const char* tname, const char* uname) {
std::cout << name << " is equivalence relation between " << tname << " and " << uname << std::endl;
}
template<typename R, typename T, typename U>
void f(const char* name, const char* tname, const char* uname) {
std::cout << name << " is not equivalence relation between " << tname << " and " << uname << std::endl;
}
struct S1 {
int n = 0;
};
struct S2 {
short m = 0;
};
// S1とS2の間の同値関係
struct equivalence_relation_s1s2 {
bool operator()(S1 lhs, S1 rhs) const {
return lhs.n == rhs.n;
}
bool operator()(S2 lhs, S2 rhs ) const {
return lhs.m == rhs.m;
}
bool operator()(S1 lhs, S2 rhs) const {
return lhs.n == rhs.m;
}
bool operator()(S2 lhs, S1 rhs) const {
return lhs.m == rhs.n;
}
};
int main() {
f<equivalence_relation_s1s2, S1, S2>("equivalence_relation_s1s2", "S1", "S2");
f<equivalence_relation_s1s2, S2, S1>("equivalence_relation_s1s2", "S2", "S1");
}
出力
equivalence_relation_s1s2 is equivalence relation between S1 and S2
equivalence_relation_s1s2 is equivalence relation between S2 and S1
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: 10.1 ✅
- Visual C++: 2019 Update 3 ✅