示例#1
0
 public static Outcome <IEnumerable <TResult> > InvokeWith <TSource, TResult>(
     this Func <TSource, Outcome <TResult> > @this,
     IEnumerable <TSource> seq)
 => Outcome.Map(seq, @this);