Garden 🌻

Bool::not

Negate this value.

True.not() //-> False
Source Codepublic method not(this: Bool): Bool {
  match this {
    True => False,
    False => True,
  }
}