コード例 #1
0
 Exception ExceptionOrDefault(Exceptional <T> ex)
 => ex.Match(exc => exc, _ => default(Exception));
コード例 #2
0
 bool IsSuccess(Exceptional <T> ex)
 => ex.Match(_ => false, _ => true);
コード例 #3
0
 T ValueOrDefault(Exceptional <T> ex)
 => ex.Match(exc => default(T), t => t);
コード例 #4
0
 public static Validation <Exceptional <R> > Traverse <T, R>
     (this Exceptional <T> tr, Func <T, Validation <R> > f)
 => tr.Match(
     Exception: e => Valid(Exceptional.Of <R>(e)),
     Success: t => from r in f(t) select Exceptional.Of(r));