Ejemplo n.º 1
0
 public static Unit ifLeft <L, R>(Either <L, R> either, Action <L> Left) =>
 either.IfLeft(Left);
Ejemplo n.º 2
0
 public static R ifLeft <L, R>(Either <L, R> either, Func <L, R> leftMap) =>
 either.IfLeft(leftMap);
Ejemplo n.º 3
0
 public static R ifLeft <L, R>(Either <L, R> either, R rightValue) =>
 either.IfLeft(rightValue);
Ejemplo n.º 4
0
 public static R ifLeft <L, R>(Either <L, R> either, Func <R> Left) =>
 either.IfLeft(Left);