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