tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
format_arg_store.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2023 Tobias Hienzsch
3
4#ifndef TETL_FORMAT_FORMAT_ARG_STORE_HPP
5#define TETL_FORMAT_FORMAT_ARG_STORE_HPP
6
7#include <etl/_array/array.hpp>
8#include <etl/_format/basic_format_arg.hpp>
9
10namespace etl::detail {
11
12template <typename Context, typename... Args>
13struct format_arg_store {
14 array<basic_format_arg<Context>, sizeof...(Args)> args;
15};
16
17} // namespace etl::detail
18
19#endif // TETL_FORMAT_FORMAT_ARG_STORE_HPP
Definition adjacent_find.hpp:9
A container that encapsulates fixed size arrays.
Definition array.hpp:49