std::equal_to, not_equal_to, less, greater, less_equal, greater_equal(std::experimental::propagate_const)

来自cppreference.com
 
 
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
 
 
 
定义于头文件 <experimental/propagate_const>
template<class T> struct equal_to<std::experimental::propagate_const<T>>;
(库基础 TS v2)
template<class T> struct not_equal_to<std::experimental::propagate_const<T>>;
(库基础 TS v2)
template<class T> struct less<std::experimental::propagate_const<T>>;
(库基础 TS v2)
template<class T> struct greater<std::experimental::propagate_const<T>>;
(库基础 TS v2)
template<class T> struct less_equal<std::experimental::propagate_const<T>>;
(库基础 TS v2)
template<class T> struct greater_equal<std::experimental::propagate_const<T>>;
(库基础 TS v2)

std::experimental::propagate_const<T> 部分特化标准比较函数对象。

p.t_ 代表 std::experimental::propagate_const<T> p 所包装的仿指针对象,则给定 std::experimental::propagate_const<T> 类型的指针 pq ,下列应当成立:

注意

这些特化确保 T 为指针类型时,这些类模板对 std::experimental::propagate_const<T> 的特化产出全序,即使对应的内建运算符不如此。

示例

参阅

实现 x == y 的函数对象
(类模板)
实现 x != y 的函数对象
(类模板)
实现 x < y 的函数对象
(类模板)
实现 x > y 的函数对象
(类模板)
实现 x <= y 的函数对象
(类模板)
实现 x >= y 的函数对象
(类模板)