(key: any)
| 76 | } |
| 77 | |
| 78 | get(key: any): Tuple<T> | undefined { |
| 79 | const childrenMap = this._getChildrenMap(); |
| 80 | return childrenMap.get(key); |
| 81 | } |
| 82 | |
| 83 | map<M>(mapper: (t: Tuple<T>, key?: any, self?: ArrayTuple<T>) => M) { |
| 84 | const childrenMap = this._getChildrenMap(); |
nothing calls this directly
no test coverage detected