Skip to main content
Module

x/fun/eq.ts>literal

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 literal
import { literal } from "https://deno.land/x/fun@v2.0.0-alpha.6/eq.ts";

Creates a Eq that compares a union of literals using strict equality.

Examples

Example 1

import { literal } from "./eq.ts";

const { equals } = literal(1, 2, "Three");

const result1 = equals(1)("Three"); // false
const result2 = equals("Three")("Three"); // true

Returns

Eq<A[number]>