arrow-fx / arrow.fx.typeclasses / ExitCase
sealed class ~~ExitCase~~<out E>
Deprecated: The IO datatype and it’s related type classes will disappear in Arrow 0.13.0. All useful operations are offered directly over suspend functions by Arrow Fx Coroutines. https://arrow-kt.io/docs/fx/async/
Cancelled | object Cancelled : ExitCase < Nothing > |
Completed | object Completed : ExitCase < Nothing > |
Error | data class Error<out E> : ExitCase <E> |
neqv | fun <E> ExitCase <E>.~~neqv~~(EQE: Eq<E>, arg1: ExitCase <E>): Boolean |
eq | fun <E> ExitCase.Companion.~~eq~~(EQE: Eq<E>): ExitCaseEq <E> |
Do you like Arrow?
✖