Ejemplo n.º 1
0
 public static Process <T> Where <T>(this Process <T> m, Func <T, bool> predicate)
 {
     return(m.Pipe(Filter(predicate)));
 }
Ejemplo n.º 2
0
 public static Process <T2> Select <T1, T2>(this Process <T1> m, Func <T1, T2> f)
 {
     return(m.Pipe(Lift(f)));
 }