Example #1
0
 /// <summary>
 /// Will return the arguments as an enumerable of doubles.
 /// </summary>
 /// <param name="ignoreHiddenCells">If a cell is hidden and this value is true the value of that cell will be ignored</param>
 /// <param name="ignoreErrors">If a cell contains an error, that error will be ignored if this method is set to true</param>
 /// <param name="arguments"></param>
 /// <param name="context"></param>
 /// <returns></returns>
 protected virtual IEnumerable <double> ArgsToDoubleEnumerable(bool ignoreHiddenCells, bool ignoreErrors, IEnumerable <FunctionArgument> arguments, ParsingContext context)
 {
     return(_argumentCollectionUtil.ArgsToDoubleEnumerable(ignoreHiddenCells, ignoreErrors, arguments, context));
 }