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