nontotal
Nontotal is an adjective used in mathematics, logic, and computer science to describe a relation or function that is not defined for every element of its input domain. A function is total if every input yields a value in the codomain; if there exists at least one input for which no output is assigned, the function is nontotal (or, more commonly in some contexts, partial). The term highlights the property of non-definition rather than the specific mechanism by which the undefined inputs arise.
In formal discussions, the standard notion is that of a partial function. A partial function from a
Examples are common in programming and logic. A function f: N -> N defined by f(n) = 1
Handling non-totality often involves explicit error signaling, option or Maybe types, or restricting the input domain