|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Observers | ||||
| Query | ||||
| Non-member functions | ||||
operator== operator<=> | ||||
| Helper classes | ||||
friendconstexprbool operator==(const stacktrace_entry& lhs, const stacktrace_entry& rhs)noexcept; | (1) | (since C++23) |
friendconstexprstd::strong_ordering operator<=>(const stacktrace_entry& lhs,const stacktrace_entry& rhs)noexcept; | (2) | (since C++23) |
stacktrace_entry values are equal if and only if they represent the same stacktrace entry, or both of them are empty.stacktrace_entry values which is consistent with the equality relation established byoperator==.These functions are not visible to ordinaryunqualified orqualified lookup, and can only be found byargument-dependent lookup when std::stacktrace_entry is an associated class of the arguments.
The<,<=,>,>=, and!= operators aresynthesized fromoperator<=> andoperator== respectively.
| lhs, rhs | - | stacktrace_entry values to compare |
| This section is incomplete Reason: no example |