* Returns an Array with the result of calling a provided function on every * child-element. * * @template M * @param {(child:delta.DeltaConfGetChildren |delta.DeltaConfGetText ,index:number)=>M} f Function that produces an element of the new Array * @return {Array } A ne
(f)
| 1345 | * callback function |
| 1346 | */ |
| 1347 | map (f) { |
| 1348 | return this.toArray().map(f) |
| 1349 | } |
| 1350 | |
| 1351 | /** |
| 1352 | * Executes a provided function once on every element of this YArray. |
no test coverage detected