4#ifndef TETL_FORMAT_BASIC_FORMAT_ARGS_HPP
5#define TETL_FORMAT_BASIC_FORMAT_ARGS_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_format/basic_format_arg.hpp>
9#include <etl/_format/basic_format_context.hpp>
10#include <etl/_format/format_arg_store.hpp>
11#include <etl/_span/span.hpp>
15template <
typename Context>
19 template <
typename... Args>
20 constexpr basic_format_args(detail::format_arg_store<Context, Args...>
const& store)
noexcept
25 [[
nodiscard]]
constexpr auto get(size_t i)
const noexcept -> basic_format_arg<Context>
27 if (i >= _args.size()) {
28 return basic_format_arg<Context>{};
34 span<basic_format_arg<Context>
const> _args;
Definition adjacent_find.hpp:9