Ejemplo n.º 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);
Ejemplo n.º 2
0
 public static Either <L, R> filter <L, R>(Either <L, R> either, Func <R, bool> pred) =>
 either.Filter(pred);
Ejemplo n.º 3
0
 public static bool filter <R, L>(Either <R, L> either, Func <R, bool> pred) =>
 either.Filter(pred);