Workalike compatibility version of std::chars_format from C++17.
Synopsis
Declared in <absl/strings/charconv.h>
enum class chars_format : int;
Description
This is an bitfield enumerator which can be passed to absl::from_chars to configure the string‐to‐float conversion.
Members
Name |
Description |
|
A matching number must contain an exponent. |
|
An exponent will never match. |
|
A hexadecimal float is parsed, without a "0x" prefix. |
|
Either fixed or scientific notation may match. |
Non-Member Functions
Name |
Description |
Computes the bitwise AND of two chars_format values. |
|
Assigns to |
|
Computes the bitwise XOR of two chars_format values. |
|
Assigns to |
|
Computes the bitwise OR of two chars_format values. |
|
Assigns to |
|
Computes the bitwise complement of a chars_format value. |
Created with MrDocs