Garden 🌻

not()

Negate this value.

Example
not(True) //-> False
Source Code
public fun not(b: Bool): Bool {
  match b {
    True => False,
    False => True,
  }
}