StateT<F, S, A> class

Implemented types

Constructors

StateT(Monad<F> _FM, Function1<S, F> _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 StateT<F, S, B> next) StateT<F, S, B>
override
ap<B>(covariant StateT<F, S, Function1<A, B>> ff) StateT<F, S, B>
override
bind<B>(covariant Function1<A, StateT<F, S, B>> f) StateT<F, S, B>
override
flatMap<B>(covariant Function1<A, StateT<F, S, B>> f) StateT<F, S, B>
override
map<B>(B f(A a)) StateT<F, S, B>
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pure<B>(B b) StateT<F, S, B>
replace<B>(B b) StateT<F, S, B>
override
run(S s) → F
state(S s) → F
strengthL<B>(B b) StateT<F, S, Tuple2<B, A>>
override
strengthR<B>(B b) StateT<F, S, Tuple2<A, B>>
override
toString() String
A string representation of this object.
inherited
value(S s) → F

Operators

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