std::common_with (C++20 起)
在标头 <concepts> 定义
|
||
template< class T, class U > concept common_with = |
(C++20 起) | |
概念 common_with<T, U>
指定两个类型 T
与 U
共享一种二者均能转换到的公共类型(以 std::common_type_t 计算)。
语义要求
T 与 U 实现 std::common_with<T, U>,仅当给定保持相等性的表达式 t1
、t2
、u1
和 u2
,且它们满足 decltype((t1)) 与 decltype((t2)) 均为 T
而 decltype((u1)) 与 decltype((u2)) 均为 U
,且满足以下条件
- 当且仅当
t1
等于t2
时 std::common_type_t<T, U>(t1) 等于 std::common_type_t<T, U>(t2);且 - 当且仅当
u1
等于u2
时 std::common_type_t<T, U>(u1) 等于 std::common_type_t<T, U>(u2)。
换言之,到公共类型的转换必须保持相等性。
相等性保持
标准库概念的 requires 表达式中声明的表达式都要求保持相等性(除非另外说明)。
参阅
(C++11) |
确定一组类型的公共类型 (类模板) |
确定一组类型的公共引用类型 (类模板) | |
(C++20) |
指定两个类型共有一个公共引用类型 (概念) |