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

getShowablePair

import { getShowablePair } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/pair.ts";

Creates a Showable instance for a pair, wrapping the Showable instances provided for the first and second values.

function getShowablePair<A, B>(SA: Showable<A>, SB: Showable<B>): Showable<Pair<A, B>>;
§
getShowablePair<A, B>(SA: Showable<A>, SB: Showable<B>): Showable<Pair<A, B>>
[src]

§Type Parameters

§Parameters

§Return Type