std::formatter<std::stack>
Min standard notice:
Header: <stack>
The template specialization of std::formatter for the container adaptor type std::stack allows users to convert the underlying container to its textual representation as a collection of elements using formatting functions.
# Declarations
template< class CharT, class T, std::formattable<CharT> Container, class... U >
struct formatter<std::stack<T, Container, U...>, CharT>;
(since C++23)
# Return value
An iterator past the end of the range-format-spec of the underlying container.
# Example
This section is incompleteReason: no example