jvmMain.io.mths.kava.result.FailureExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kava-core-jvm Show documentation
Show all versions of kava-core-jvm Show documentation
Core kava functionalities.
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