jvmMain.io.mths.kava.result.SuccessExtensions.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.succeeded() =
this == ValidationResult.Success
infix fun ValidationResult.onSuccess(block: () -> Unit) = also {
if (it.succeeded()) {
block()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy