Skip to main content
Module

x/hkts/fns.ts>compose

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

Compose

Takes two functions with matching types and composes them into a new function.


type

<B, C>(fbc: Fn<[B], C>) => unknown