blob: effcec78ebe7770f69d1eb890f11b544629a22c7 [file] [log] [blame]
//===----------------------------------------------------------------------===//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17
// UNSUPPORTED: libcpp-has-no-incomplete-format
// <format>
// iterator out();
#include <format>
#include <cassert>
#include <string>
#include "test_macros.h"
#include "test_format_context.h"
#include "test_iterators.h"
template <class OutIt, class CharT>
void test(
std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) {
{
std::basic_string<CharT> str = std::basic_string<CharT>(3, CharT(' '));
std::basic_format_context context = test_format_context_create(OutIt{str.begin()}, args);
// Note this operation is moving the iterator
OutIt out_it = context.out();
*out_it++ = CharT('a');
*out_it++ = CharT('b');
*out_it++ = CharT('c');
assert(str.size() == 3);
assert(str[0] == CharT('a'));
assert(str[1] == CharT('b'));
assert(str[2] == CharT('c'));
}
}
void test() {
test(std::basic_format_args(
std::make_format_args<
std::basic_format_context<cpp20_output_iterator<std::basic_string<char>::iterator>, char>>()));
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
test(std::basic_format_args(
std::make_format_args<
std::basic_format_context<cpp20_output_iterator<std::basic_string<wchar_t>::iterator>, wchar_t>>()));
#endif
#ifndef TEST_HAS_NO_CHAR8_T
test(std::basic_format_args(
std::make_format_args<
std::basic_format_context<cpp20_output_iterator<std::basic_string<char8_t>::iterator>, char8_t>>()));
#endif
test(std::basic_format_args(
std::make_format_args<
std::basic_format_context<cpp20_output_iterator<std::basic_string<char16_t>::iterator>, char16_t>>()));
test(std::basic_format_args(
std::make_format_args<
std::basic_format_context<cpp20_output_iterator<std::basic_string<char32_t>::iterator>, char32_t>>()));
}
int main(int, char**) {
test();
return 0;
}