* Executes a provided function once on every element of this YArray. * * @param {(child:delta.DeltaConfGetChildren |delta.DeltaConfGetText ,index:number)=>any} f Function that produces an element of the new Array
(f)
| 1354 | * @param {(child:delta.DeltaConfGetChildren<DConf>|delta.DeltaConfGetText<DConf>,index:number)=>any} f Function that produces an element of the new Array |
| 1355 | */ |
| 1356 | forEach (f) { |
| 1357 | return this.toArray().forEach(f) |
| 1358 | } |
| 1359 | |
| 1360 | /** |
| 1361 | * Executes a provided function on once on every key-value pair. |
no test coverage detected