ICU 75.1 75.1
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Friends
icu::number::SimpleNumber Class Reference

An input type for SimpleNumberFormatter. More...

#include <simplenumberformatter.h>

Inheritance diagram for icu::number::SimpleNumber:
icu::UMemory

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 truncateStart (uint32_t maximumIntegerDigits, UErrorCode &status)
 Alias for setMaximumIntegerDigits.
 
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.
 
SimpleNumberoperator= (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
 

Detailed Description

An input type for SimpleNumberFormatter.

This class is mutable and not intended for public subclassing. This class is movable but not copyable.

Stable:
ICU 73

Definition at line 53 of file simplenumberformatter.h.

Constructor & Destructor Documentation

◆ SimpleNumber() [1/2]

icu::number::SimpleNumber::SimpleNumber ( )
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.

Stable:
ICU 73

◆ ~SimpleNumber()

icu::number::SimpleNumber::~SimpleNumber ( )
inline

Destruct this SimpleNumber, cleaning up any memory it might own.

Stable:
ICU 73

Definition at line 139 of file simplenumberformatter.h.

◆ SimpleNumber() [2/2]

icu::number::SimpleNumber::SimpleNumber ( SimpleNumber &&  other)
inlinenoexcept

SimpleNumber move constructor.

Stable:
ICU 73

Definition at line 148 of file simplenumberformatter.h.

Member Function Documentation

◆ forInt64()

static SimpleNumber icu::number::SimpleNumber::forInt64 ( int64_t  value,
UErrorCode status 
)
static

Creates a SimpleNumber for an integer.

Stable:
ICU 73

◆ multiplyByPowerOfTen()

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.

Stable:
ICU 73

◆ operator=()

SimpleNumber & icu::number::SimpleNumber::operator= ( SimpleNumber &&  other)
inlinenoexcept

SimpleNumber move assignment.

Stable:
ICU 73

Definition at line 159 of file simplenumberformatter.h.

◆ roundTo()

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.

Stable:
ICU 73

◆ setMaximumIntegerDigits()

void icu::number::SimpleNumber::setMaximumIntegerDigits ( uint32_t  maximumIntegerDigits,
UErrorCode status 
)

Sets the number of integer digits to the given amount, truncating if necessary.

Draft:
This API may be changed in the future versions and was introduced in ICU 75

◆ setMinimumFractionDigits()

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.

Stable:
ICU 73

◆ setMinimumIntegerDigits()

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.

Stable:
ICU 73

◆ setSign()

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.

Stable:
ICU 73

◆ truncateStart()

void icu::number::SimpleNumber::truncateStart ( uint32_t  maximumIntegerDigits,
UErrorCode status 
)

Alias for setMaximumIntegerDigits.

Will be removed after ICU 75.

Deprecated:
ICU 75

Friends And Related Symbol Documentation

◆ icu::SimpleDateFormat

Definition at line 180 of file simplenumberformatter.h.

◆ SimpleNumberFormatter

Definition at line 177 of file simplenumberformatter.h.


The documentation for this class was generated from the following file: