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