Packages

object RyuDouble

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RyuDouble
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final val DOUBLE_EXPONENT_BIAS: 1023
  5. final val DOUBLE_EXPONENT_BITS: Int(11)
  6. final val DOUBLE_EXPONENT_MASK: 2047
  7. final val DOUBLE_MANTISSA_BITS: Int(52)
  8. final val DOUBLE_MANTISSA_MASK: 4503599627370495L
  9. final val POW5_ARRAY_NCOL: Int(4)
  10. final val POW5_BITCOUNT: Int(121)
  11. final val POW5_INV_BITCOUNT: Int(122)
  12. final val POW5_INV_SPLIT: scala.Array[Int]
  13. final val POW5_SPLIT: scala.Array[Int]
  14. final val RESULT_STRING_MAX_LENGTH: Int(24)
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  17. def doubleToChars(value: Double, roundingMode: RyuRoundingMode, result: scala.Array[Char], offset: Int): Int

    Low-level function executing the Ryu algorithm on Double value.

    Low-level function executing the Ryu algorithm on Double value. This function allows destination passing style. This means that the result destination (Array[Char]) has to be passed as an argument. The goal is to avoid additional allocations when possible. Warnings: this function makes no verification of destination bounds (offset and length are assumed to be valid). The caller must thus ensure that result.length - offset >= RESULT_STRING_MAX_LENGTH.

    value

    the value to be converted

    roundingMode

    customization of Ryu rounding mode

    result

    the Array[Char] destination of the conversion result

    offset

    index in Array[Char] destination where new chars will start to be written

    returns

    new offset as: old offset + number of created chars (i.e. last modified index + 1)

  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped