DoubleSum Method
DoubleSum()
an aggregator that calculates the sum of the input values. Does NOT accept null input values. Accepts only double input values.
Declaration
public static IAggregator<double> DoubleSum()
Returns
IAggregator<Double> | The aggregator. |
DoubleSum(String)
An aggregator that calculates the sum of the input values extracted from the given attributePath. Does NOT accept null input values nor null extracted values. Accepts only double input values.
Declaration
public static IAggregator<double> DoubleSum(string attributePath)
Parameters
String | attributePath | attribute Path |
Returns
IAggregator<Double> | The aggregator. |