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

commonMain.neat.Validity.kt Maven / Gradle / Ivy

package neat

sealed interface Validity {
    val value: T

    fun  map(transformer: (T) -> R): Validity

    fun getOrThrow(): T
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy