|
ICU4X
International Components for Unicode
|
#include <stdint.h>#include <stddef.h>#include <stdbool.h>#include <algorithm>#include <memory>#include <variant>#include <optional>#include "diplomat_runtime.hpp"#include "ICU4XFixedDecimalSign.h"Go to the source code of this file.
Enumerations | |
| enum struct | ICU4XFixedDecimalSign { None = 0 , Negative = 1 , Positive = 2 } |
|
strong |
The sign of a FixedDecimal, as shown in formatting.
See the Rust documentation for Sign for more information.
| Enumerator | |
|---|---|
| None | No sign (implicitly positive, e.g., 1729). |
| Negative | A negative sign, e.g., -1729. |
| Positive | An explicit positive sign, e.g., +1729. |