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
3#ifndef TETL_FORMAT_FORMAT_ARG_STORE_HPP
4#define TETL_FORMAT_FORMAT_ARG_STORE_HPP
5
8
9namespace etl::detail {
10
11template <typename Context, typename... Args>
12struct format_arg_store {
13 array<basic_format_arg<Context>, sizeof...(Args)> args;
14};
15
16} // namespace etl::detail
17
18#endif // TETL_FORMAT_FORMAT_ARG_STORE_HPP
array(T, U...) -> array< T, 1+sizeof...(U)>
One deduction guide is provided for array to provide an equivalent of experimental::make_array for co...