Skip to main content
Module

x/fun/boolean.ts>constFalse

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

A function that always returns false.

Examples

Example 1

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

const result = constFalse(); // false

type

() => unknown