ExcelFormulaParser.Engine.Excel.Functions.ExcelFunction.CalculateCollection C# (CSharp) Method

CalculateCollection() protected method

protected CalculateCollection ( IEnumerable collection, double result, Func action ) : double
collection IEnumerable
result double
action Func
return double
        protected virtual double CalculateCollection(IEnumerable<FunctionArgument> collection, double result, Func<FunctionArgument,double,double> action)
        {
            return _argumentCollectionUtil.CalculateCollection(collection, result, action);
        }