Skip to main content
Module

x/fun/eq.ts>boolean

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

A Eq that compares booleans using strict equality.

Examples

Example 1

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

const result1 = boolean.equals(true)(false); // false
const result2 = boolean.equals(true)(true); // true

type

Eq<boolean>