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

jvmMain.io.mths.kava.result.FailureExtensions.kt Maven / Gradle / Ivy

The newest version!
package io.mths.kava.result

fun ValidationResult.failed() =
    !succeeded()

infix fun ValidationResult.onFailure(block: () -> Unit) = also {
    if (it.failed()) {
        block()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy