NexusForce
1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
载入中...
搜索中...
未找到
both_equality_comparable 概念参考
概念约束
检查两个类型是否可以双向相等比较
更多...
#include <
concepts.hpp
>
概念定义
template
<
typename
T1,
typename
T2>
concept
both_equality_comparable
=
one_way_equality_comparable<T1, T2>
&&
one_way_equality_comparable<T2, T1>
both_equality_comparable
检查两个类型是否可以双向相等比较
定义
concepts.hpp:196
one_way_equality_comparable
检查两个类型是否可以单向相等比较
定义
concepts.hpp:184
详细描述
检查两个类型是否可以双向相等比较
模板参数
T1
第一个类型
T2
第二个类型
在文件
concepts.hpp
第
196
行定义.
both_equality_comparable
制作者
1.16.0