liftFuture<A> method
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)));
});
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)));
});