Integer
data class Integer(val minDigits: UInt, val maxDigits: UInt, val roundingMode: RoundingMode = RoundingMode.HalfEven) : NumberFormatStyle
Formats a number to an integer representation
Parameters
minDigits
The minimum number of digits to show. Defaults to 0U.
maxDigits
The maximum number of digits to show. Defaults to 309U.
roundingMode
The RoundingMode to be applied. Defaults to RoundingMode.HalfEven.