//arrow-fx-coroutines/arrow.fx.coroutines/Race3
common sealed class Race3<out A, out B, out C>
Name | Summary |
---|---|
First | common data class First<A>(val winner: A) : Race3<A, Nothing, Nothing> |
Second | common data class Second<B>(val winner: B) : Race3<Nothing, B, Nothing> |
Third | common data class Third<C>(val winner: C) : Race3<Nothing, Nothing, C> |
Name | Summary |
---|---|
fold | common inline fun <D> fold(ifA: (A) -> D, ifB: (B) -> D, ifC: (C) -> D): D |
Name |
---|
First |
Second |
Third |
Do you like Arrow?
✖