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

jvmMain.dev.atsushieno.ktmidi.Utility.jvm.kt Maven / Gradle / Ivy

The newest version!
package dev.atsushieno.ktmidi
import io.ktor.utils.io.core.*

typealias KtorByteOrder = io.ktor.utils.io.core.ByteOrder

internal actual fun stringToByteArray(s: String): ByteArray = s.toByteArray()
internal actual fun nativeByteOrder(): ByteOrder = when(KtorByteOrder.nativeOrder()) {
    KtorByteOrder.BIG_ENDIAN -> ByteOrder.BIG_ENDIAN
    KtorByteOrder.LITTLE_ENDIAN -> ByteOrder.LITTLE_ENDIAN
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy