operator==, operator<=>(std::stacktrace_entry)
Min standard notice:
- Compares lhs and rhs for equality. Two stacktrace_entry values are equal if and only if they represent the same stacktrace entry, or both of them are empty.
# Declarations
friend constexpr bool operator==( const stacktrace_entry& lhs,
const stacktrace_entry& rhs ) noexcept;
(since C++23)
friend constexpr std::strong_ordering
operator<=>( const stacktrace_entry& lhs, const stacktrace_entry& rhs ) noexcept;
(since C++23)
# Parameters
lhs, rhs: stacktrace_entry values to compare
# Example
This section is incompleteReason: no example