4#ifndef TETL_FORMAT_BASIC_FORMAT_CONTEXT_HPP
5#define TETL_FORMAT_BASIC_FORMAT_CONTEXT_HPP
7#include <etl/_format/fmt_buffer.hpp>
8#include <etl/_iterator/back_insert_iterator.hpp>
11template <
typename T,
typename CharT>
21template <
typename OutputIt,
typename CharT>
23 using iterator = OutputIt;
24 using char_type = CharT;
32 using formatter_type = formatter<T, CharT>;
Definition adjacent_find.hpp:9
etl::back_insert_iterator is a LegacyOutputIterator that appends to a container for which it was cons...
Definition back_insert_iterator.hpp:19
Provides access to formatting state consisting of the formatting arguments and the output iterator.
Definition basic_format_context.hpp:22
constexpr basic_format_context(OutputIt pos) noexcept
Definition basic_format_context.hpp:26
constexpr auto advance_to(iterator it) noexcept -> void
Sets the output iterator to it. After a call to advance_to, subsequent calls to out() will return a c...
Definition basic_format_context.hpp:42
constexpr auto out() noexcept -> iterator
Returns the iterator to the output buffer.
Definition basic_format_context.hpp:35