Evaluation<E, R, W, S, A> class

Implemented types

Constructors

Evaluation(Monoid<W> _W, Function2<R, S, Future<Either<E, Tuple3<W, S, A>>>> _run)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

andThen<B>(covariant Evaluation<E, R, W, S, B> next) Evaluation<E, R, W, S, B>
override
ap<B>(covariant Evaluation<E, R, W, S, Function1<A, B>> ff) Evaluation<E, R, W, S, B>
override
bind<B>(covariant Function1<A, Evaluation<E, R, W, S, B>> f) Evaluation<E, R, W, S, B>
override
flatMap<B>(covariant Function1<A, Evaluation<E, R, W, S, B>> f) Evaluation<E, R, W, S, B>
override
handleError(Evaluation<E, R, W, S, A> onError(E err)) Evaluation<E, R, W, S, A>
map<B>(B f(A a)) Evaluation<E, R, W, S, B>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pure<B>(B b) Evaluation<E, R, W, S, B>
replace<B>(B replacement) Evaluation<E, R, W, S, B>
override
replicate_(int n) Evaluation<E, R, W, S, Unit>
run(R r, S s) Future<Either<E, Tuple3<W, S, A>>>
state(R r, S s) Future<Either<E, S>>
strengthL<B>(B b) Evaluation<E, R, W, S, Tuple2<B, A>>
override
strengthR<B>(B b) Evaluation<E, R, W, S, Tuple2<A, B>>
override
toString() String
A string representation of this object.
inherited
value(R r, S s) Future<Either<E, A>>
written(R r, S s) Future<Either<E, W>>

Operators

operator ==(Object other) bool
The equality operator.
inherited