All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.kotlinx.io.bits.ByteOrderJS.kt Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
@file:Suppress("NOTHING_TO_INLINE")

package kotlinx.io.bits

/**
 * Reverse number's byte order
 */
actual fun Short.reverseByteOrder(): Short = swap(this)

/**
 * Reverse number's byte order
 */
actual fun Int.reverseByteOrder(): Int = swap(this)

/**
 * Reverse number's byte order
 */
actual fun Long.reverseByteOrder(): Long = swap(this)

/**
 * Reverse number's byte order
 */
actual fun Float.reverseByteOrder(): Float = swap(this)

/**
 * Reverse number's byte order
 */
actual fun Double.reverseByteOrder(): Double = swap(this)


private inline fun swap(s: Short): Short = (((s.toInt() and 0xff) shl 8) or ((s.toInt() and 0xffff) ushr 8)).toShort()

private inline fun swap(s: Int): Int =
    (swap((s and 0xffff).toShort()).toInt() shl 16) or (swap((s ushr 16).toShort()).toInt() and 0xffff)

private inline fun swap(s: Long): Long =
    (swap((s and 0xffffffff).toInt()).toLong() shl 32) or (swap((s ushr 32).toInt()).toLong() and 0xffffffff)

private inline fun swap(s: Float): Float = Float.fromBits(swap(s.toRawBits()))

private inline fun swap(s: Double): Double = Double.fromBits(swap(s.toRawBits()))





© 2015 - 2025 Weber Informatics LLC | Privacy Policy