1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
11 // UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
13 // [container.adaptors.format]
14 // For each of queue, priority_queue, and stack, the library provides the
15 // following formatter specialization where adaptor-type is the name of the
18 // template<class charT, class T, formattable<charT> Container, class... U>
19 // struct formatter<adaptor-type<T, Container, U...>, charT>
21 // template<class FormatContext>
22 // typename FormatContext::iterator
23 // format(maybe-const-adaptor& r, FormatContext& ctx) const;
25 // Note this tests the basics of this function. It's tested in more detail in
26 // the format functions test.
35 #include "test_format_context.h"
36 #include "test_macros.h"
37 #include "make_string.h"
39 #define SV(S) MAKE_STRING_VIEW(CharT, S)
41 template <class StringViewT
, class Arg
>
42 void test_format(StringViewT expected
, Arg arg
) {
43 using CharT
= typename
StringViewT::value_type
;
44 using String
= std::basic_string
<CharT
>;
45 using OutIt
= std::back_insert_iterator
<String
>;
46 using FormatCtxT
= std::basic_format_context
<OutIt
, CharT
>;
48 const std::formatter
<Arg
, CharT
> formatter
;
51 OutIt out
= std::back_inserter(result
);
52 FormatCtxT format_ctx
= test_format_context_create
<OutIt
, CharT
>(out
, std::make_format_args
<FormatCtxT
>(arg
));
53 formatter
.format(arg
, format_ctx
);
54 assert(result
== expected
);
57 template <class CharT
>
59 std::array input
{1, 42, 99, 0};
60 test_format(SV("[1, 42, 99, 0]"), std::queue
<int>{input
.begin(), input
.end()});
61 test_format(SV("[99, 42, 1, 0]"), std::priority_queue
<int>{input
.begin(), input
.end()});
62 test_format(SV("[1, 42, 99, 0]"), std::stack
<int>{input
.begin(), input
.end()});
67 #ifndef TEST_HAS_NO_WIDE_CHARACTERS
72 int main(int, char**) {