Exemplo n.º 1
0
 public static Either <L, R2> Apply <L, R, R2>(this Either <L, Func <R, R2> > @this, Either <L, R> e) => e.ApplyR(@this);
Exemplo n.º 2
0
 public static Either <L, R2> Apply <L, R, R2>(this Either <L, R> @this, Either <L, Func <R, R2> > fn) => @this.ApplyR(fn);