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

commonMain.com.bselzer.ktx.value.identifier.StringIdentifier.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.ktx.value.identifier

interface StringIdentifier : Identifier {
    override val isDefault: Boolean
        get() = value.isBlank()

    operator fun compareTo(other: String): Int = value.compareTo(other)
    override operator fun compareTo(other: Identifier): Int = value.compareTo(other.value)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy