tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
c_array.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_ARRAY_C_ARRAY_HPP
5#define TETL_ARRAY_C_ARRAY_HPP
6
7#include <etl/_cstddef/size_t.hpp>
8
9namespace etl {
10
11/// \ingroup array
12template <typename ValueType, etl::size_t Size>
13using c_array = ValueType[Size];
14
15/// \ingroup array
16struct empty_c_array { };
17
18} // namespace etl
19
20#endif // TETL_ARRAY_C_ARRAY_HPP
Definition adjacent_find.hpp:9
Definition c_array.hpp:16