RxnDoubleExt extension
Properties
- sign → double?
- 
      Available on Rx< Returns the sign of the double's numerical value.double?> , provided by the RxnDoubleExt extensionno setter
Methods
- 
  abs() → double? 
- 
      Available on Rx< Returns the absolute value of this double.double?> , provided by the RxnDoubleExt extension
- 
  ceil() → int? 
- 
      Available on Rx< Returns the least integer no smaller thandouble?> , provided by the RxnDoubleExt extensionthis.
- 
  ceilToDouble() → double? 
- 
      Available on Rx< Returns the least integer double value no smaller thandouble?> , provided by the RxnDoubleExt extensionthis.
- 
  floor() → int? 
- 
      Available on Rx< Returns the greatest integer no greater thandouble?> , provided by the RxnDoubleExt extensionthis.
- 
  floorToDouble() → double? 
- 
      Available on Rx< Returns the greatest integer double value no greater thandouble?> , provided by the RxnDoubleExt extensionthis.
- 
  round() → int? 
- 
      Available on Rx< Returns the integer closest todouble?> , provided by the RxnDoubleExt extensionthis.
- 
  roundToDouble() → double? 
- 
      Available on Rx< Returns the integer double value closest todouble?> , provided by the RxnDoubleExt extensionthis.
- 
  truncate() → int? 
- 
      Available on Rx< Returns the integer obtained by discarding any fractional digits fromdouble?> , provided by the RxnDoubleExt extensionthis.
- 
  truncateToDouble() → double? 
- 
      Available on Rx< Returns the integer double value obtained by discarding any fractional digits fromdouble?> , provided by the RxnDoubleExt extensionthis.
Operators
- 
  operator %(num other) → double? 
- 
      Available on Rx< double?> , provided by the RxnDoubleExt extension
- 
  operator *(num other) → double? 
- 
      Available on Rx< Multiplication operator.double?> , provided by the RxnDoubleExt extension
- 
  operator +(num other) → Rx< double?> ?
- 
      Available on Rx< Addition operator.double?> , provided by the RxnDoubleExt extension
- 
  operator -(num other) → Rx< double?> ?
- 
      Available on Rx< Subtraction operator.double?> , provided by the RxnDoubleExt extension
- 
  operator /(num other) → double? 
- 
      Available on Rx< Division operator.double?> , provided by the RxnDoubleExt extension
- 
  operator unary-() → double? 
- 
      Available on Rx< Negate operator. */double?> , provided by the RxnDoubleExt extension
- 
  operator ~/(num other) → int? 
- 
      Available on Rx< Truncating division operator.double?> , provided by the RxnDoubleExt extension