public static IEnumerable <T> ValueOrEmpty <T>( this Maybe <IEnumerable <T> > @this) { return(@this.ValueOrElse(Enumerable.Empty <T>())); }