Skip to main content
Module

x/fun/mod.ts>pair.getShow

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
function pair.getShow
import { pair } from "https://deno.land/x/fun@v2.0.0-alpha.6/mod.ts";
const { getShow } = pair;

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

Parameters

SA: Show<A>
SB: Show<B>

Returns

Show<Pair<A, B>>