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

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

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

fun ValidationResult.succeeded() =
    this == ValidationResult.Success

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy