tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
chars_format.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_CHARCONV_CHARS_FORMAT_HPP
5#define TETL_CHARCONV_CHARS_FORMAT_HPP
6
7#include <etl/_cstdint/uint_t.hpp>
8
9namespace etl {
10
11/// \brief A BitmaskType used to specify floating-point formatting for to_chars
12/// and from_chars.
13enum struct chars_format : etl::uint8_t {
14 scientific = 0x1,
15 fixed = 0x2,
16 hex = 0x4,
18};
19
20} // namespace etl
21
22#endif // TETL_CHARCONV_CHARS_FORMAT_HPP
Definition adjacent_find.hpp:9
chars_format
A BitmaskType used to specify floating-point formatting for to_chars and from_chars.
Definition chars_format.hpp:13