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

commonMain.dk.cachet.carp.common.application.Trilean.kt Maven / Gradle / Ivy

package dk.cachet.carp.common.application


/**
 * A boolean value that can also be 'unknown' in case insufficient information is available.
 */
enum class Trilean
{
    TRUE,
    FALSE,
    UNKNOWN
}

/**
 * Convert a [Boolean] value into a corresponding [Trilean].
 */
fun Boolean.toTrilean(): Trilean
{
    return if ( this ) Trilean.TRUE else Trilean.FALSE
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy