Skip to main content
Module

x/hkts/fns.ts>apply

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

Apply

Takes a group of arguments and curries them so that a function can be appied to them later (pipeable Function.apply)


type

<AS extends unknown[], B>(...as: AS) => unknown