tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
strings.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2024 Tobias Hienzsch
3
4#ifndef TETL_STRINGS_HPP
5#define TETL_STRINGS_HPP
6
7/// \defgroup strings strings
8/// String algorithms
9/// \note Non-standard extension
10/// \ingroup strings-library
11/// \code{.cpp}
12/// #include <etl/strings.hpp>
13/// \endcode
14
15#include <etl/_config/all.hpp>
16
17/// Non-standard extensions
18#include <etl/_strings/find.hpp>
19#include <etl/_strings/from_floating_point.hpp>
20#include <etl/_strings/from_integer.hpp>
21#include <etl/_strings/rfind.hpp>
22#include <etl/_strings/to_floating_point.hpp>
23#include <etl/_strings/to_integer.hpp>
24
25#endif // TETL_STRINGS_HPP