Example #1
0
 public static Either <L, R> filter <L, R>(Either <L, R> either, Func <R, bool> Right, Func <L, bool> Left) =>
 either.Filter(Right, Left);
Example #2
0
 public static Either <L, R> filter <L, R>(Either <L, R> either, Func <R, bool> pred) =>
 either.Filter(pred);
Example #3
0
 public static bool filter <R, L>(Either <R, L> either, Func <R, bool> pred) =>
 either.Filter(pred);