/** * Negates a value * @param x :: a * @returns :: boolean */ export function not(x: A): boolean { return !x }