示例#1
0
 public static Exp <Func <T, V> > Compose <T, U, V>(Exp <Func <U, V> > f, Exp <Func <T, U> > g) => Lam <T, V>(x => f.Apply(g.Apply(x)));