ktor-io / io.ktor.utils.io.core / readDouble

readDouble

fun Buffer.readDouble(): Double

Read a floating point number or fail if not enough bytes available for reading. The numeric value is decoded in the network order (Big Endian).

inline fun IoBuffer.readDouble(): Double
Deprecated: IoBuffer is deprecated. Use Memory or Input instead.


fun Input.readDouble(byteOrder: ByteOrder): Double
fun Input.readDouble(): Double