public static Maybe <IEnumerable <T> > EmptyIfNone <T>( this Maybe <IEnumerable <T> > @this) { return(@this.OrElse(Maybe.EmptyEnumerable <T>())); }