UNPKG

graph-builder

Version:

A graph builder library for modeling abstract graph structures.

22 lines (14 loc) 577 B
[Home](./index) &gt; [graph-builder](./graph-builder.md) &gt; [MutableGraph](./graph-builder.mutablegraph.md) &gt; [removeEdge](./graph-builder.mutablegraph.removeedge.md) # MutableGraph.removeEdge method Removes the edge connecting `nodeU` to `nodeV`<!-- -->, if it is present. **Signature:** ```javascript removeEdge(nodeU: N, nodeV: N): boolean; ``` **Returns:** `boolean` `true` if the graph was modified as a result of this call ## Parameters | Parameter | Type | Description | | --- | --- | --- | | `nodeU` | `N` | | | `nodeV` | `N` | |