Option::is_none
/ Return True if this value is None.
None
Source Codepublic method is_none<T>(this: Option<T>): Bool { match this { Some(_) => False, None => True, } }
public method is_none<T>(this: Option<T>): Bool { match this { Some(_) => False, None => True, } }