nee-core / dev.neeffect.nee.effects

Package dev.neeffect.nee.effects

Types

Out

Outcome of business function.

sealed class Out<out E, out A>

Functions

flatMap

fun <E, A, B> Out<E, A>.flatMap(f: (A) -> Out<E, B>): Out<E, B>

toFuture

fun <E, A> Out<E, A>.toFuture(): Future<Either<E, A>>