FastNumber

class FastNumber

FastNumber is a mutable, thread-local instance used for quick operations on numeric values

FastNumber is a mutable, thread-local instance used for quick operations on numeric values

Companion
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def clear(): Unit
def group(grouping: Grouping, offset: Int): Unit
def insertInteger(char: Char, position: Int): Unit
def set(value: BigDecimal): Unit
def setMaximumFractionDigits(max: Int, roundingMode: RoundingMode): Unit
def setMaximumIntegerDigits(max: Int): Unit
def setMinimumFractionDigits(min: Int): Unit
def setMinimumIntegerDigits(min: Int): Unit
override def toString: String
Definition Classes
Any

Concrete fields

val fraction: Array[Char]

Values are set left-aligned in the array with spaces representing non-values

Values are set left-aligned in the array with spaces representing non-values

val integer: Array[Char]

Values are set right-aligned in the array with spaces representing non-values

Values are set right-aligned in the array with spaces representing non-values