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

uncurry2

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

§Type Parameters

§Parameters

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

§Return Type

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