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