(map: IdMap3<MapValue> | undefined)
| 140 | mapClone(map, mapClone); |
| 141 | |
| 142 | export const mapClone3 = <MapValue>(map: IdMap3<MapValue> | undefined) => |
| 143 | mapClone(map, mapClone2); |
| 144 | |
| 145 | export type Node<Path, Leaf> = Map<Path, Node<Path, Leaf> | Leaf>; |
| 146 | export const visitTree = <Path, Leaf>( |
no test coverage detected
searching dependent graphs…