Garden 🌻

Bool type

The boolean type. This type represents when something is true or false, such as predicates.

Source Codeenum Bool {
  True,
  False,
}

Methods