graph-builder
Version:
A graph builder library for modeling abstract graph structures.
22 lines (14 loc) • 577 B
Markdown
[Home](./index) > [graph-builder](./graph-builder.md) > [MutableGraph](./graph-builder.mutablegraph.md) > [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` | |