命名空间
变体
操作

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)
实验性非 TS
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
在头文件 <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 的函数对象
(类模板) [编辑]