totalFalse
TotalFalse is a term used in logic and computer science to denote a total function that always returns the boolean value false. It is the constant-false function across its domain and is often discussed alongside totalTrue, the function that always returns true.
Formally, if A is a type, totalFalse : A -> Bool is defined by totalFalse(a) = False for every
In programming, totalFalse is realized by a function that ignores its argument and yields false. Examples include
Uses and interpretation: totalFalse serves as a baseline or corner case in logic, type theory, and program
See also: constant function; vacuous truth; boolean algebra; total functions vs partial functions.