(callback: (value: V, index: K) => any)
| 314 | } |
| 315 | |
| 316 | forEach(callback: (value: V, index: K) => any) { |
| 317 | this._forEach(this._root, callback); |
| 318 | } |
| 319 | |
| 320 | private _forEach(node: TernarySearchTreeNode<K, V> | undefined, callback: (value: V, index: K) => any) { |
| 321 | if (node) { |
no test coverage detected