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
3#ifndef TETL_ARRAY_C_ARRAY_HPP
4#define TETL_ARRAY_C_ARRAY_HPP
5
7
8namespace etl {
9
11template <typename ValueType, etl::size_t Size>
12using c_array = ValueType[Size];
13
15struct empty_c_array { };
16
17} // namespace etl
18
19#endif // TETL_ARRAY_C_ARRAY_HPP
ValueType[Size] c_array
Definition c_array.hpp:12
Definition adjacent_find.hpp:8
Definition c_array.hpp:15