Beispiel #1
0
 /// <summary>
 /// Iterate the Either
 /// Appropriate action is invoked depending on the state of the Either
 /// </summary>
 public static Unit Iter <L, R>(this EitherUnsafe <L, R> self, Action <R> Right, Action <L> Left)
 {
     self.Iter(Right);
     self.Iter(Left);
     return(unit);
 }