operator==(std::expected)

来自cppreference.com
< cpp‎ | utility‎ | expected


 
 
工具库
语言支持
类型支持(基本类型、RTTI)
库功能特性测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
初等字符串转换
(C++17)
(C++17)

 
 
主模板
template< class T2, class E2 >

    requires (!std::is_void_v<T2>)
friend constexpr bool operator==( const expected& x,

                                  const expected<T2, E2>& y );
(1) (C++23 起)
template< class T2 >
friend constexpr bool operator==( const expected& x, const T2& val );
(2) (C++23 起)
template< class E2 >

friend constexpr bool operator==( const expected& x,

                                  const unexpected<E2>& e );
(3) (C++23 起)
void 部分特化
template< class T2, class E2 >

  requires std::is_void_v<T2>
friend constexpr bool operator==( const expected& x,

                                  const expected<T2, E2>& y );
(4) (C++23 起)
template< class E2 >

friend constexpr bool operator==( const expected& x,

                                  const unexpected<E2>& e );
(5) (C++23 起)

expected 对象执行比较操作。

1) 比较两个 expected 对象。当且仅当 xy 都包含相等的预期值,或者都包含相等的非预期值时,对象才比较相等。
如果以下任意表达式非良构,或者它(们)的结果不可转换到 bool,那么程序非良构:
  • *x == *y
  • x.error() == y.error()
2)expected 对象与一个预期值比较。当且仅当 x 包含一个预期值,且该值等于 val 时,对象才比较相等。
如果表达式 *x == val 非良构,或者它的结果不可转换到 bool,那么程序非良构。
3)expected 对象与一个非预期值比较。当且仅当 x 包含一个非预期值,且该值等于 e.error() 时,对象才比较相等。
如果表达式 x.error() == e.error() 非良构,或者它的结果不可转换到 bool,那么程序非良构。
4) 比较两个 expected 对象。当且仅当 xy 都表示预期值,或者都包含相等的非预期值时,对象才比较相等。
如果表达式 x.error() == y.error() 非良构,或者它的结果不可转换到 bool,那么程序非良构。
5)expected 对象与一个非预期值比较。当且仅当 x 包含一个非预期值,且该值等于 e.error() 时,对象才比较相等。
如果表达式 x.error() == e.error() 非良构,或者它的结果不可转换到 bool,那么程序非良构。

这些函数对常规的无限定有限定查找不可见,而只能在 std::expected<T, E> 为实参的关联类时由实参依赖查找找到。

!= 运算符从 operator== 运算符合成

参数

x, y - 用于比较的 expected 对象
val - 要与 x 中包含的预期值比较的值
e - 要与 x 中包含的非预期值比较的值

返回值

1) x.has_value() ? (y.has_value() && *x == *y) : (!y.has_value() && x.error() == y.error())
2) x.has_value() && static_cast<bool>(*x == val)
3) !x.has_value() && static_cast<bool>(x.error() == e.error())
4) x.has_value() ? y.has_value() : (!y.has_value() && x.error() == y.error())
5) !x.has_value() && static_cast<bool>(x.error() == e.error())

异常

抛出比较时抛出的异常。

示例

#include <expected>
#include <iostream>
#include <string_view>
using namespace std::string_view_literals;
 
int main()
{
    auto x1{"\N{GREEN HEART}"sv};
    auto x2{"\N{CROSS MARK}"sv};
    std::expected<std::string_view, int> e1{x1}, e2{x1}, e3{x2};
    std::unexpected u1{13};
 
    std::cout << "重载 (1):\n"
              << e1.value() << (e1 == e2 ? " == " : " != ") << *e2 << '\n'
              << e1.value() << (e1 != e3 ? " != " : " == ") << *e3 << "\n\n";
 
    std::cout << "重载 (2):\n"
              << *e1 << (e1 == x1 ? " == " : " != ") << x1 << '\n'
              << *e1 << (e1 != x2 ? " != " : " == ") << x2 << "\n\n";
 
    std::cout << "重载 (3):\n"
              << e1.value() << (e1 == u1 ? " == " : " != ") << u1.error() << '\n';
    e1 = std::unexpected{13};
    std::cout << e1.error() << (e1 == u1 ? " == " : " != ") << u1.error() << '\n';
    e1 = std::unexpected{31};
    std::cout << e1.error() << (e1 != u1 ? " != " : " == ") << u1.error() << '\n';
}

输出:

重载 (1):
💚 == 💚
💚 != ❌
 
重载 (2):
💚 == 💚
💚 != ❌
 
重载 (3):
💚 != 13
13 == 13
31 != 13

参阅

表示一个非预期值
(类模板)