MutableNumFunExt<T extends num> extension

on

Properties

isFinite bool?
no setter
isInfinite bool?
no setter
isNaN bool?
no setter
isNegative bool?
no setter
sign num?
no setter

Methods

abs() num?
ceil() int?
ceilToDouble() double?
clamp(num lowerLimit, num upperLimit) num?
floor() int?
floorToDouble() double?
remainder(num other) num?
round() int?
roundToDouble() double?
toDouble() double?
toInt() int?
toStringAsExponential([int? fractionDigits]) String?
toStringAsFixed(int fractionDigits) String?
toStringAsPrecision(int precision) String?
truncate() int?
truncateToDouble() double?

Operators

operator %(num other) num?
operator *(num other) num?
operator /(num other) double?
operator <(num other) bool?
operator <=(num other) bool?
operator >(num other) bool?
operator >=(num other) bool?
operator unary-() num?
operator ~/(num other) int?