not package:mixed-types-num

A synonym of negate.
notElem is the negation of elem.

Examples

Basic usage:
>>> 3 `notElem` []
True
>>> 3 `notElem` [1,2]
True
>>> 3 `notElem` [1,2,3,4,5]
False
For infinite structures, notElem terminates if the value exists at a finite distance from the left side of the structure:
>>> 3 `notElem` [1..]
False
>>> 3 `notElem` ([4..] ++ [3])
* Hangs forever *
HSpec properties that each implementation of CanAdd should satisfy.
HSpec properties that each implementation of CanSub should satisfy.
HSpec properties that each implementation of CanAndOr should satisfy.
HSpec properties that each implementation of CanDiv should satisfy.
HSpec properties that each implementation of HasEq should satisfy.
HSpec properties that each implementation of CanMinMax should satisfy.
HSpec properties that each implementation of CanMul should satisfy.
HSpec properties that each implementation of HasOrder should satisfy.