Garden 🌻

Option type

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

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

Methods