Hyperlinkv0.8.0-beta.28

Graph

Graph.Edgeclasseffect/Graph.ts:89
Edge<E>

Represents edge data containing source, target, and user data.

When to use

Use as the graph edge value that carries source node, target node, and stored edge data together.

Source effect/Graph.ts:895 lines
export class Edge<E> extends Data.Class<{
  readonly source: NodeIndex
  readonly target: NodeIndex
  readonly data: E
}> {}
Referenced by 6 symbols