std::swap(std::basic_stacktrace)
Min standard notice:
Header: <stacktrace>
Specializes the std::swap algorithm for std::basic_stacktrace. Swaps the contents of lhs and rhs. Equivalent to lhs.swap(rhs);.
# Declarations
template< class Allocator >
void swap( std::basic_stacktrace<Allocator>& lhs, std::basic_stacktrace<Allocator>& rhs )
noexcept(noexcept(lhs.swap(rhs)));
(since C++23)
# Parameters
lhs, rhs: stacktraces whose contents to swap
# Return value
(none)
# Example
This section is incompleteReason: no example