UNPKG

graph-builder

Version:

A graph builder library for modeling abstract graph structures.

20 lines (13 loc) 573 B
[Home](./index) &gt; [graph-builder](./graph-builder.md) &gt; [EndpointPair](./graph-builder.endpointpair.md) &gt; [unordered](./graph-builder.endpointpair.unordered.md) # EndpointPair.unordered method Returns an [EndpointPair](./graph-builder.endpointpair.md) representing the endpoints of an undirected edge. **Signature:** ```javascript static unordered<N>(nodeU: N, nodeV: N): EndpointPair<N>; ``` **Returns:** `EndpointPair<N>` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | `nodeU` | `N` | | | `nodeV` | `N` | |