Skip to main content
Module

x/hkts/either.ts>fold

Functional programming tools: option, either, task, state, optics, etc.
Latest
variable fold
import { fold } from "https://deno.land/x/hkts@v0.0.52/either.ts";

Destructors


type

<L, R, B>(onLeft: (left: L) => B, onRight: (right: R) => B) => unknown