Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

curry2

import { curry2 } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/fn.ts";
function curry2<A, B, C>(fn: (a: A, b: B) => C): (a: A) => (b: B) => C;
§
curry2<A, B, C>(fn: (a: A, b: B) => C): (a: A) => (b: B) => C
[src]

§Type Parameters

§Parameters

§
fn: (a: A, b: B) => C
[src]

§Return Type

§
(a: A) => (b: B) => C
[src]