| 
            
              AggregateFunctionsAny Method
             | 
          
        
        
            Gets flag that determines if any of the values in the array
            evaluate to true for the provided comparisonExpr.
            
        
        Namespace: DynamicCalculatorAssembly: DynamicCalculator (in DynamicCalculator.dll) Version: 2.4.258-beta
SyntaxDynamicCalculator.AggregateFunctions.Any = function(array, comparisonExpr);
 View SourceParameters
- array  Double
 - Source value array.
 - comparisonExpr  String
 - Comparison expression, e.g., "> 0".
 
Return Value
Boolean
            Cumulative boolean result for any values evaluating to 
true for
            provided comparison expression.
            
Remarks
            Expression is compiled with support for 
Math and 
DateTime types so
            related static functions and constants can be used in expressions, e.g., 
">= 2 * PI".
            
See Also