RxDoubleExt extension

on

Properties

sign → double

Available on Rx<double>, provided by the RxDoubleExt extension

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

Methods

abs() → double

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt 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 RxDoubleExt extension

operator *(num other) → double

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

Subtraction operator.
operator /(num other) → double

Available on Rx<double>, provided by the RxDoubleExt extension

Division operator.
operator unary-() → double

Available on Rx<double>, provided by the RxDoubleExt extension

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

Available on Rx<double>, provided by the RxDoubleExt extension

Truncating division operator.