* * @param {IFunction[]|KernelFunction[]} functions * @return {this}
(functions)
| 521 | * @return {this} |
| 522 | */ |
| 523 | setFunctions(functions) { |
| 524 | for (let i = 0; i < functions.length; i++) { |
| 525 | this.addFunction(functions[i]); |
| 526 | } |
| 527 | return this; |
| 528 | } |
| 529 | |
| 530 | /** |
| 531 | * |
nothing calls this directly
no test coverage detected