toFuture<R, E, A> function

Future<A> Function(R r) toFuture<R, E, A>(
  1. ReaderTaskEither<R, E, A> f
)

Implementation

Future<A> Function(R r) toFuture<R, E, A>(ReaderTaskEither<R, E, A> f) =>
    (r) => TE.toFuture(f(r));