liftFuture<A> method

Evaluation<E, R, W, S, A> liftFuture<A>(
  1. Future<A> fut
)

Implementation

Evaluation<E, R, W, S, A> liftFuture<A>(Future<A> fut) => new Evaluation(_W, (r, s) {
  return fut.then((ta) => new Right(new Tuple3(_W.zero(), s, ta)));
});