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