sealed class ~~Race3~~<out A, out B, out C>
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/
| First | data class First<A> : Race3<A, Nothing, Nothing> |
| Second | data class Second<B> : Race3<Nothing, B, Nothing> |
| Third | data class Third<C> : Race3<Nothing, Nothing, C> |
| fold | fun <D> fold(ifA: (A) -> D, ifB: (B) -> D, ifC: (C) -> D): D |
Do you like Arrow?
✖