( graph: Graph<N, E, T> | MutableGraph<N, E, T> )
| 225 | |
| 226 | /** @internal */ |
| 227 | const graphImpl = <N, E, T extends Kind = "directed">( |
| 228 | graph: Graph<N, E, T> | MutableGraph<N, E, T> |
| 229 | ): GraphImpl<N, E, T> => graph as unknown as GraphImpl<N, E, T> |
| 230 | |
| 231 | /** @internal */ |
| 232 | const cloneAdjacency = (adjacency: Map<NodeIndex, Array<EdgeIndex>>): Map<NodeIndex, Array<EdgeIndex>> => { |
no outgoing calls
no test coverage detected