Class DirectedEdge<T>

Type Parameters

  • T = number

Hierarchy

Constructors

Properties

Accessors

Methods

Constructors

  • The constructor function initializes the source and destination vertices of an edge, along with an optional weight and value.

    Type Parameters

    • T = number

    Parameters

    • src: VertexId

      The src parameter is the source vertex ID. It represents the starting point of an edge in a graph.

    • dest: VertexId

      The dest parameter represents the destination vertex of an edge. It is of type VertexId, which is likely a unique identifier for a vertex in a graph.

    • Optional weight: number

      The weight parameter is an optional number that represents the weight of the edge.

    • Optional val: T

      The val parameter is an optional parameter of type T. It represents the value associated with the edge.

    Returns DirectedEdge<T>

Properties

_dest: VertexId
_hashCode: string
_src: VertexId

Accessors

Methods

Generated using TypeDoc