| 293 | |
| 294 | // The Min function is different from Max only in the calculation method calcFn |
| 295 | export class Min extends Max { |
| 296 | static override func(params: IFormulaParam<number>[]): NumericType { |
| 297 | return this.calc(params, min); |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | export class Log extends NumericFunc { |
| 302 | static override validateParams(params: AstNode[]) { |
no outgoing calls
no test coverage detected