tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
array.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_ARRAY_HPP
5#define TETL_ARRAY_HPP
6
7/// \defgroup array array
8/// etl::array container
9/// \ingroup containers-library
10/// \example array.cpp
11/// \code{.cpp}
12/// #include <etl/array.hpp>
13/// \endcode
14
15#include <etl/_config/all.hpp>
16
17#include <etl/_array/array.hpp>
18
19// Non-standard extensions
20#include <etl/_array/c_array.hpp>
21#include <etl/_array/dynamic_array.hpp>
22#include <etl/_array/uninitialized_array.hpp>
23
24#endif // TETL_ARRAY_HPP