operator==, operator<=>(std::basic_stacktrace)
Min standard notice:
- Checks if the contents of lhs and rhs are equal, that is, they have the same number of elements and each element in lhs compares equal with the element in rhs at the same position.
# Declarations
template< class Allocator2 >
friend bool operator==( const basic_stacktrace& lhs,
const basic_stacktrace<Allocator2>& rhs ) noexcept;
(since C++23)
template< class Allocator2 >
friend std::strong_ordering
operator<=>( const basic_stacktrace& lhs,
const basic_stacktrace<Allocator2>& rhs ) noexcept;
(since C++23)
# Parameters
lhs, rhs: basic_stacktraces whose contents to compare
# Example
This section is incompleteReason: no example