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
3#ifndef TETL_CHARCONV_CHARS_FORMAT_HPP
4#define TETL_CHARCONV_CHARS_FORMAT_HPP
5
7
8namespace etl {
9
14 fixed = 0x2,
15 hex = 0x4,
17};
18
19} // namespace etl
20
21#endif // TETL_CHARCONV_CHARS_FORMAT_HPP
Definition adjacent_find.hpp:8
TETL_BUILTIN_UINT8 uint8_t
Unsigned integer type with width of exactly 8 bits.
Definition uint_t.hpp:11
chars_format
A BitmaskType used to specify floating-point formatting for to_chars and from_chars.
Definition chars_format.hpp:12
@ scientific
Definition chars_format.hpp:13
@ general
Definition chars_format.hpp:16
@ hex
Definition chars_format.hpp:15
@ fixed
Definition chars_format.hpp:14