ReaderTaskEither<E, L, R> constructor

const ReaderTaskEither<E, L, R>(
  1. Future<Either<L, R>> _run(
    1. E env
    )
)

Build a ReaderTaskEither from a function returning a Future<Either<L, R>>.

Implementation

const ReaderTaskEither(this._run);