operator==, operator<=>(std::stacktrace_entry)

  1. 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

# Example

This section is incompleteReason: no example