ICU 76.1 76.1
|
An input type for SimpleNumberFormatter. More...
#include <simplenumberformatter.h>
Public Member Functions | |
void | multiplyByPowerOfTen (int32_t power, UErrorCode &status) |
Changes the value of the SimpleNumber by a power of 10. | |
void | roundTo (int32_t power, UNumberFormatRoundingMode roundingMode, UErrorCode &status) |
Rounds the value currently stored in the SimpleNumber to the given power of 10, which can be before or after the decimal separator. | |
void | setMaximumIntegerDigits (uint32_t maximumIntegerDigits, UErrorCode &status) |
Sets the number of integer digits to the given amount, truncating if necessary. | |
void | setMinimumIntegerDigits (uint32_t minimumIntegerDigits, UErrorCode &status) |
Pads the beginning of the number with zeros up to the given minimum number of integer digits. | |
void | setMinimumFractionDigits (uint32_t minimumFractionDigits, UErrorCode &status) |
Pads the end of the number with zeros up to the given minimum number of fraction digits. | |
void | setSign (USimpleNumberSign sign, UErrorCode &status) |
Sets the sign of the number: an explicit plus sign, explicit minus sign, or no sign. | |
SimpleNumber ()=default | |
Creates a new, empty SimpleNumber that does not contain a value. | |
~SimpleNumber () | |
Destruct this SimpleNumber, cleaning up any memory it might own. | |
SimpleNumber (SimpleNumber &&other) noexcept | |
SimpleNumber move constructor. | |
SimpleNumber & | operator= (SimpleNumber &&other) noexcept |
SimpleNumber move assignment. | |
Static Public Member Functions | |
static SimpleNumber | forInt64 (int64_t value, UErrorCode &status) |
Creates a SimpleNumber for an integer. | |
Friends | |
class | SimpleNumberFormatter |
class | icu::SimpleDateFormat |
An input type for SimpleNumberFormatter.
This class is mutable and not intended for public subclassing. This class is movable but not copyable.
Definition at line 53 of file simplenumberformatter.h.
|
default |
Creates a new, empty SimpleNumber that does not contain a value.
NOTE: This number will fail to format; use forInt64() to create a SimpleNumber with a value.
|
inline |
Destruct this SimpleNumber, cleaning up any memory it might own.
Definition at line 129 of file simplenumberformatter.h.
|
inlinenoexcept |
SimpleNumber move constructor.
Definition at line 138 of file simplenumberformatter.h.
|
static |
Creates a SimpleNumber for an integer.
void icu::number::SimpleNumber::multiplyByPowerOfTen | ( | int32_t | power, |
UErrorCode & | status | ||
) |
Changes the value of the SimpleNumber by a power of 10.
This function immediately mutates the inner value.
|
inlinenoexcept |
void icu::number::SimpleNumber::roundTo | ( | int32_t | power, |
UNumberFormatRoundingMode | roundingMode, | ||
UErrorCode & | status | ||
) |
Rounds the value currently stored in the SimpleNumber to the given power of 10, which can be before or after the decimal separator.
This function does not change minimum integer digits.
void icu::number::SimpleNumber::setMaximumIntegerDigits | ( | uint32_t | maximumIntegerDigits, |
UErrorCode & | status | ||
) |
Sets the number of integer digits to the given amount, truncating if necessary.
void icu::number::SimpleNumber::setMinimumFractionDigits | ( | uint32_t | minimumFractionDigits, |
UErrorCode & | status | ||
) |
Pads the end of the number with zeros up to the given minimum number of fraction digits.
void icu::number::SimpleNumber::setMinimumIntegerDigits | ( | uint32_t | minimumIntegerDigits, |
UErrorCode & | status | ||
) |
Pads the beginning of the number with zeros up to the given minimum number of integer digits.
void icu::number::SimpleNumber::setSign | ( | USimpleNumberSign | sign, |
UErrorCode & | status | ||
) |
Sets the sign of the number: an explicit plus sign, explicit minus sign, or no sign.
This setting is applied upon formatting the number.
NOTE: This does not support accounting sign notation.
|
friend |
Definition at line 170 of file simplenumberformatter.h.
|
friend |
Definition at line 167 of file simplenumberformatter.h.