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

jsMain.com.copperleaf.kudzu.KudzuPlatform.kt Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package com.copperleaf.kudzu

/**
 * Acutal/expect declarations for Kudzu
 */
actual object KudzuPlatform {

    actual fun isLetter(char: Char): Boolean {
        return char in (('a'..'z') + ('A'..'Z'))
    }

    actual fun isDigit(char: Char): Boolean {
        return char in ('0'..'9')
    }

    actual fun isLetterOrDigit(char: Char): Boolean {
        return isLetter(char) || isDigit(char)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy