C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- C++ 标准库扩展
- std::experimental::pmr::resource_adaptor
- std::experimental::invocation_type, std::experimental::raw_invocation_type
- C++ 标准库扩展,版本 2
- std::experimental::propagate_const
- std::experimental::propagate_const<T>::propagate_const
- std::experimental::propagate_const<T>::operator=
- std::experimental::propagate_const<T>::swap
- std::experimental::propagate_const<T>::get
- std::experimental::propagate_const<T>::operator bool
- std::experimental::propagate_const<T>::operator*, std::experimental::propagate_const<T>::operator->
- std::experimental::propagate_const<T>::operator element_type*, std::experimental::propagate_const<T>::operator const element_type*
- operator==,!=,<,<=,>,>=(std::experimental::propagate_const)
- std::experimental::swap(std::experimental::propagate_const)
- std::experimental::get_underlying
- std::hash(std::experimental::propagate_const)
- std::equal_to, not_equal_to, less, greater, less_equal, greater_equal(std::experimental::propagate_const)
- 并行扩展
- 并行扩展,版本 2
- std::experimental::sample
- std::experimental::to_array
- std::experimental::source_location
- std::experimental::not_fn
- std::experimental::future
- std::experimental::shared_future
- std::experimental::ostream_joiner
- std::experimental::randint
- std::experimental::observer_ptr
- std::experimental::is_detected, std::experimental::detected_t, std::experimental::detected_or
- C++ 标准库扩展,版本 3
- std::experimental::scope_exit
- std::experimental::scope_fail
- std::experimental::scope_success
- std::experimental::unique_resource
- 并发扩展
- 制约与概念
- 范围扩展
- std::experimental::function
- std::experimental::nonesuch
- std::experimental::reseed
- std::experimental::shuffle
- std::experimental::when_all
- std::experimental::barrier
- std::experimental::latch
- std::experimental::make_array
- 数学特殊函数
- 文件系统库
- std::experimental::erased_type
- std::experimental::when_any
- std::experimental::make_ready_future
- std::experimental::make_exceptional_future
- std::experimental::flex_barrier
- 注释
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >实验性 C++ 特性 >std::experimental::propagate_const > operator==,!=,<,<=,>,>=(std::experimental::propagate_const)
operator==,!=,<,<=,>,>=(std::experimental::propagate_const)
constexpr bool operator==(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator!=(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator<(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator>(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator<=(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator>=(const propagate_const<T>& pt,
template <class T, class U>
constexpr bool operator==(const propagate_const<T>& pt, const U& u);
constexpr bool operator==(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator!=(const propagate_const<T>& pt, const U& u);
constexpr bool operator!=(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator==(const T& t, const propagate_const<U>& pu);
constexpr bool operator==(const T& t, const propagate_const<U>& pu);
template <class T, class U>
constexpr bool operator!=(const T& t, const propagate_const<U>& pu);
constexpr bool operator!=(const T& t, const propagate_const<U>& pu);
template <class T, class U>
constexpr bool operator<(const propagate_const<T>& pt, const U& u);
constexpr bool operator<(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator>(const propagate_const<T>& pt, const U& u);
constexpr bool operator>(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator<=(const propagate_const<T>& pt, const U& u);
constexpr bool operator<=(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator>=(const propagate_const<T>& pt, const U& u);
constexpr bool operator>=(const propagate_const<T>& pt, const U& u);
template <class T, class U>
constexpr bool operator<(const T& t, const propagate_const<U>& pu);
constexpr bool operator<(const T& t, const propagate_const<U>& pu);
template <class T, class U>
constexpr bool operator>(const T& t, const propagate_const<U>& pu);
constexpr bool operator>(const T& t, const propagate_const<U>& pu);
template <class T, class U>
constexpr bool operator<=(const T& t, const propagate_const<U>& pu);
constexpr bool operator<=(const T& t, const propagate_const<U>& pu);
template <class T, class U>
constexpr bool operator>=(const T& t, const propagate_const<U>& pu);
constexpr bool operator>=(const T& t, const propagate_const<U>& pu);
在二个 propagate_const
的被包装指针,或一个 propagate_const
和 nullptr ,或一个 propagate_const
和另一对象之间比较。
1-4)
propagate_const
和 nullptr 的相等比较。5-6) 二个
propagate_const
的相等比较。7-10) 二个
propagate_const
的顺序比较。11-14) 一个
propagate_const
和另一对象的相等比较。15-22) 一个
propagate_const
和另一对象的顺序比较。参数
pt, pu | - | 要比较的 propagate_const
|
t, u | - | 要比较的另一对象 |
返回值
令 t_
代表 propagate_const
所包装的底层仿指针对象
1) pt.t_ == nullptr
2) nullptr == pt.t_
3) pt.t_ != nullptr
4) nullptr != pt.t_
5) pt.t_ == pu.t_
6) pt.t_ != pu.t_
7) pt.t_ < pu.t_
8) pt.t_ > pu.t_
9) pt.t_ <= pu.t_
10) pt.t_ >= pu.t_
11) pt.t_ == u
12) pt.t_ != u
13) t == pu.t_
14) t != pu.t_
15) pt.t_ < u
16) pt.t_ > u
17) pt.t_ <= u
18) pt.t_ >= u
19) t < pu.t_
20) t > pu.t_
21) t <= pu.t_
22) t >= pu.t_