tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
optional.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2020 Tobias Hienzsch
3
4#ifndef TETL_OPTIONAL_HPP
5#define TETL_OPTIONAL_HPP
6
7/// \defgroup optional optional
8/// etl::optional class template
9/// \ingroup utilities-library
10/// \example optional.cpp
11/// \code{.cpp}
12/// #include <etl/optional.hpp>
13/// \endcode
14
15#include <etl/_config/all.hpp>
16
17#include <etl/_optional/bad_optional_access.hpp>
18#include <etl/_optional/nullopt.hpp>
19#include <etl/_optional/optional.hpp>
20
21#endif // TETL_OPTIONAL_HPP