|
Name |
Description |
  |
Sum<T>(IEnumerable<T>) |
Create an expression from a stream of other expressions. Note that the other expressions are copied by reference, so changing them later will affect the returned expression.
|
  |
Sum<T, A>(IEnumerable<T>, Func<T, TResult>) |
|
  |
Sum<A>(Int32, Func<T, TResult>) |
|
  |
Sum(Expression, Expression) |
Create an expression from an array of other expressions. Note that the other expressions are copied by reference, so changing them later will affect the returned expression.
|
  |
Sum<T1, T2, A>(IEnumerable<T1>, IEnumerable<T2>, Func<T1, T2, TResult>) |
|
  |
Sum<A>(Int32, Int32, Func<T1, T2, TResult>) |
|
  |
Sum<T1, T2, T3, A>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, Func<T1, T2, T3, TResult>) |
|
  |
Sum<A>(Int32, Int32, Int32, Func<T1, T2, T3, TResult>) |
|
  |
Sum<T1, T2, T3, T4, A>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerable<T4>, Func<T1, T2, T3, T4, TResult>) |
|
  |
Sum<A>(Int32, Int32, Int32, Int32, Func<T1, T2, T3, T4, TResult>) |
|
  |
Sum<T1, T2, T3, T4, T5, A>(IEnumerable<T1>, IEnumerable<T2>, IEnumerable<T3>, IEnumerable<T4>, IEnumerable<T5>, Function5<T1, T2, T3, T4, T5, A>) |
Create a 5-dimensional sum of expressions. Note that the terms are captured by reference, i.e., changing those terms later will affect the return sum.
|
  |
Sum<A>(Int32, Int32, Int32, Int32, Int32, Function5<Int32, Int32, Int32, Int32, Int32, A>) |
Create a 5-dimensional sum of expressions. Note that the terms are captured by reference, i.e., changing those terms later will affect the return sum.
|