commonMain.dev.atsushieno.ktmidi.Utility.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmidi-jvm Show documentation
Show all versions of ktmidi-jvm Show documentation
Kotlin Multiplatform library for MIDI 1.0 and MIDI 2.0
The newest version!
package dev.atsushieno.ktmidi
enum class ByteOrder {
LITTLE_ENDIAN,
BIG_ENDIAN;
companion object {
// FIXME: replace this with ktor-io ByteOrder.nativeOrder() once it gets ready for wasmJs target
fun nativeOrder() = nativeByteOrder()
}
}
// FIXME: replace this with ktor-io toByteArray() once it gets ready for wasmJs target
fun String.toUtf8ByteArray() = stringToByteArray(this)
internal expect fun stringToByteArray(s: String): ByteArray
internal expect fun nativeByteOrder(): ByteOrder