Maybe<T> typedef
Maybe<T> = Some<T> ?
A type alias represents a union of "has value (Some)" and "no value (None)"
Implementation
typedef Maybe<T> = Some<T>?;
A type alias represents a union of "has value (Some)" and "no value (None)"
typedef Maybe<T> = Some<T>?;