operator==, operator<=>(std::stacktrace_entry)
来自 cppreference.com
< cpp | utility | stacktrace entry
friend constexpr bool operator==( const stacktrace_entry& lhs, const stacktrace_entry& rhs ) noexcept; |
(1) | (自 C++23 起) |
friend constexpr std::strong_ordering operator<=>( const stacktrace_entry& lhs, const stacktrace_entry& rhs ) noexcept; |
(2) | (自 C++23 起) |
1) 比较 lhs 和 rhs 是否相等。两个
stacktrace_entry
值相等当且仅当它们表示相同的堆栈跟踪条目,或者它们都为空。2) 获取 lhs 和 rhs 在所有
stacktrace_entry
值上的未指定严格全序中之间的相对顺序,该顺序与 operator==
建立的相等关系一致。这些函数对普通非限定或限定查找不可见,并且只有在 std::stacktrace_entry 是参数的关联类时,才能通过参数依赖查找找到它们。
<
、<=
、>
、>=
和 !=
运算符分别从 operator<=> 和 operator== 合成。
[编辑] 参数
lhs, rhs | - | 要比较的 stacktrace_entry 值 |
[编辑] 返回值
1) 如果两个 true lhs 和 rhs 比较相等,否则为 false。
2) 如果 lhs 和 rhs 比较相等,则为 std::strong_ordering::equal。
否则,如果 lhs 在严格全序中排在 rhs 之前,则为 std::strong_ordering::less。
否则,为 std::strong_ordering::greater(在这种情况下,rhs 在严格全序中排在 lhs 之前)。
[编辑] 示例
本节不完整 原因:没有示例 |