jvmMain.com.strumenta.kotlinmultiplatform.chars.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr-kotlin-runtime-jvm Show documentation
Show all versions of antlr-kotlin-runtime-jvm Show documentation
Kotlin multiplatform port of ANTLR
package com.strumenta.kotlinmultiplatform
actual fun Char.Companion.isSupplementaryCodePoint(codePoint: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
actual fun Char.Companion.charCount(i: Int): Byte {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
actual fun Char.Companion.maxValue(): Char = '\uFFFF'
actual fun Char.Companion.toChars(codePoint: Int, resultArray: CharArray, resultIdx: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
actual fun isCharUppercase(firstChar: Char): Boolean {
return firstChar.isUpperCase()
}
actual fun isCharLowerCase(firstChar: Char): Boolean {
return firstChar.isLowerCase()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy