RxnDoubleExt extension

on

Properties

sign double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the sign of the double's numerical value.
no setter

Methods

abs() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the absolute value of this double.
ceil() int?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the least integer no smaller than this.
ceilToDouble() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the least integer double value no smaller than this.
floor() int?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the greatest integer no greater than this.
floorToDouble() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the greatest integer double value no greater than this.
round() int?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the integer closest to this.
roundToDouble() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the integer double value closest to this.
truncate() int?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the integer obtained by discarding any fractional digits from this.
truncateToDouble() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Returns the integer double value obtained by discarding any fractional digits from this.

Operators

operator %(num other) double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

operator *(num other) double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Multiplication operator.
operator +(num other) Rx<double?>?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Addition operator.
operator -(num other) Rx<double?>?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Subtraction operator.
operator /(num other) double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Division operator.
operator unary-() double?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Negate operator. */
operator ~/(num other) int?

Available on Rx<double?>, provided by the RxnDoubleExt extension

Truncating division operator.