Garden 🌻

Option::is_none

/ Return True if this value is None.

Source Codepublic method is_none<T>(this: Option<T>): Bool {
  match this {
    Some(_) => False,
    None => True,
  }
}