Garden 🌻

Bool::not()

Negate this value.

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