Skip to main content Link Menu Expand (external link) Document Search Copy Copied

IOEither overview

Added in v1.0.0

Helpers for IOEithers


Table of contents


toThrowingIO

Signature

export function toThrowingIO<E, A>(ioe: IOE.IOEither<E, A>): IO.IO<A> { ... }

Added in v0.0.1 Converts a IOEither to a IO. If the IOEither is a left, this IO will throw the left value.