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