Skip to main content
Module

x/fun/mod.ts>schemable.UnionSchemable

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

Takes two schemables, left and right, and returns the union of them. This means that any value for must match either schemable.

Type Parameters

U extends Kind
definition: TypeClass<U> & { readonly union: <I, B, C, D, E>(right: $<U, [I, B, C], [D], [E]>) => <A>(left: $<U, [A, B, C], [D], [E]>) => $<U, [A | I, B, C], [D], [E]>; }