(mapper: (t: Tuple<T>, key?: any, self?: ArrayTuple<T>) => M)
| 81 | } |
| 82 | |
| 83 | map<M>(mapper: (t: Tuple<T>, key?: any, self?: ArrayTuple<T>) => M) { |
| 84 | const childrenMap = this._getChildrenMap(); |
| 85 | const result: M[] = []; |
| 86 | childrenMap.forEach((tuple, key) => result.push(mapper(tuple, key, this))); |
| 87 | return result; |
| 88 | } |
| 89 | } |
nothing calls this directly
no test coverage detected