Companion

object Companion

Functions

Link copied to clipboard
fun addDoubleAndIntegerCanDestroy(    aDouble: Double,     anInteger: A_Number,     canDestroy: Boolean): Double

Compute the sum of a Kotlin Double and an Avail integer. Answer the double nearest this ideal value.

Link copied to clipboard
fun compareDoubleAndInteger(aDouble: Double, anInteger: A_Number): AbstractNumberDescriptor.Order
Link copied to clipboard
fun compareDoubles(double1: Double, double2: Double): AbstractNumberDescriptor.Order

Compare two Java double-precision floating point numbers.

Link copied to clipboard
fun doubleNegativeInfinity(): A_Number

Answer the Avail object representing java.lang.Double.NEGATIVE_INFINITY.

Link copied to clipboard
fun doubleNotANumber(): A_Number

Answer the Avail object representing java.lang.Double.NaN.

Link copied to clipboard
fun doublePositiveInfinity(): A_Number

Answer the Avail object representing java.lang.Double.POSITIVE_INFINITY.

Link copied to clipboard
fun doubleTruncatedToExtendedInteger(inputD: Double): A_Number

Given a double, produce the extended integer that is nearest it but rounding toward zero. Double infinities are converted to extended integer infinities. Do not call with a NaN value.

Link copied to clipboard
fun doubleZero(): A_Number

Answer the Avail object representing 0.0d.

Link copied to clipboard
fun fromDouble(aDouble: Double): A_Number

Construct an Avail double-precision floating point object from the passed double. Do not answer an existing object.

Link copied to clipboard
fun fromDoubleRecycling(    aDouble: Double,     recyclable1: A_Number,     canDestroy: Boolean): A_Number

Construct an Avail boxed double-precision floating point object from the passed double.

Link copied to clipboard
fun objectFromDoubleRecycling(    aDouble: Double,     recyclable1: A_Number,     recyclable2: A_Number,     canDestroy: Boolean): A_Number

Construct an Avail boxed double-precision floating point object from the passed double.

Properties

Link copied to clipboard
val fromDoubleMethod: CheckedMethod