![JAR search and dependency download from the Maven repository](/logo.png)
app.cash.quiver.extensions.ErrorOr.kt Maven / Gradle / Ivy
package app.cash.quiver.extensions
import arrow.core.Either
typealias ErrorOr = Either
/**
* Downgrades an ErrorOr to a Result.
*/
fun ErrorOr.toResult(): Result = fold({ Result.failure(it) }, { Result.success(it) })
© 2015 - 2025 Weber Informatics LLC | Privacy Policy