Monad<KT, A> mixin
- Superclass constraints
- Mixin applications
-
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>(HKT<KT, B> then())
→ HKT<KT, B>
-
-
ap<B>(covariant Monad<KT, B Function(A a)> a)
→ HKT<KT, B>
-
override
-
call<B>(HKT<KT, B> chain)
→ HKT<KT, B>
-
-
chainFirst<B>(covariant Monad<KT, B> chain(A a))
→ HKT<KT, A>
-
-
flatMap<B>(HKT<KT, B> f(A a))
→ HKT<KT, B>
-
-
map<B>(B f(A a))
→ HKT<KT, B>
-
Return type is
HKT<G, B>
, which expresses the fact that what
we return is using exactly the same type constructor represented by the brand G
inherited
-
map2<C, D>(Monad<KT, C> mc, D f(A a, C c))
→ HKT<KT, D>
-
-
map3<C, D, E>(Monad<KT, C> mc, Monad<KT, D> md, E f(A a, C c, D d))
→ HKT<KT, E>
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
pure<B>(B b)
→ HKT<KT, B>
-
inherited
-
toString()
→ String
-
A string representation of this object.
inherited