arrow-fx-coroutines / arrow.fx.coroutines.stream / Pull / Bind
abstract class Bind<O, X, R> : Pull<O, R>
| <init> | Bind(step: Pull<O, X>) |
| step | val step: Pull<O, X> |
| cont | abstract fun cont(r: Result<X>): Pull<O, R> |
| delegate | open fun delegate(): Bind<O, X, R> |
| mapOutput | open fun <P> mapOutput(f: (O) -> P): Pull<P, R> |
| toString | open fun toString(): String |
Do you like Arrow?
✖