예제 #1
0
파일: Semigroup.cs 프로젝트: jedahu/Jib
 public Either <X, A> Op(Either <X, A> t1, Either <X, A> t2)
 {
     return(t1.Cata(x => t2, a => t1));
 }