Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fun/showable.ts>tuple

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Latest
variable tuple
import { tuple } from "https://deno.land/x/fun@v2.0.0/showable.ts";

type

<A extends ReadonlyArray<unknown>>(...shows: [K in keyof A]: Showable<A[K]>) => Showable<Readonly<A>>