Interface Path<V, E>

A list of edges starting at vertex from that lead to vertex to.

Returned by the various path-building functions in this module. Don't construct these yourself.

interface Path<V, E> {
    from: V;
    path: E[];
    to: V;
}

Type Parameters

  • V

  • E

Properties

Properties

from: V
path: E[]
to: V

Generated using TypeDoc