StateTMonad<F, S> class

Inheritance
Mixed-in types

Constructors

StateTMonad(Monad<F> _FM)

Properties

hashCode → int
The hash code for this object.
no setterinherited
nothing → StateT<F, S, dynamic>
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

ap<A, B>(StateT<F, S, dynamic> fa, StateT<F, S, dynamic> ff) → StateT<F, S, dynamic>
inherited
bind<A, B>(covariant StateT<F, S, A> fa, covariant Function1<A, StateT<F, S, B>> f) → StateT<F, S, B>
override
composeF(Functor G) → Functor<StateT<F, S, dynamic>>
inherited
get() → StateT<F, S, S>
gets<A>(A f(S s)) → StateT<F, S, A>
join(StateT<F, S, dynamic> ffa) → StateT<F, S, dynamic>
inherited
map<A, B>(covariant StateT<F, S, A> fa, covariant B f(A a)) → StateT<F, S, B>
override
modify(S f(S s)) → StateT<F, S, Unit>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pure<A>(A a) → StateT<F, S, A>
override
put(S newS) → StateT<F, S, Unit>
strengthL<A, B>(StateT<F, S, dynamic> fa, B b) → StateT<F, S, dynamic>
inherited
strengthR<A, B>(StateT<F, S, dynamic> fa, B b) → StateT<F, S, dynamic>
inherited
toString() → String
A string representation of this object.
inherited
withState<A>(StateT<F, S, A> f(S s)) → StateT<F, S, A>

Operators

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