Link

Overview

App Function’s Result Monid


Table of contents


MonadNode (interface)

The is a app function’s result value

Signature

interface MonadNode extends TaskEither {}

Added in v0.2.0

TEO (constant)

Signature


export const TEO: ApplicativeComposition21<"TaskEither", "Option"> = ...

parallel (constant)

Signature


export const parallel: <E, A>(ta: TE.TaskEither<E, A>[]) => TE.TaskEither<E, A[]> = ...

sequence (constant)

Signature


export const sequence: <E, A>(ta: TE.TaskEither<E, A>[]) => TE.TaskEither<E, A[]> = ...

traverse (constant)

Signature


export const traverse: <A, E, B>(ta: A[], f: (a: A) => TE.TaskEither<E, B>) => TE.TaskEither<E, B[]> = ...

fromString (function)

Build from a MonidNode<A,string>

Added in v0.2.0

fromTask (function)

Build from a task that can throw a excpection.

Added in v0.2.0