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