not()
Negate this value.
not(True) //-> False
public fun not(b: Bool): Bool { match b { True => False, False => True, } }