Garden 🌻

Option type

The option type. Use this when you might have a value, but might not.

Source Codeenum Option<T> {
  Some(T),
  None,
}

Methods