Class DirectedEdge<V>

Type Parameters

  • V = any

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

    • V = any

    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: V

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

    Returns DirectedEdge<V>

Properties

_dest: VertexId
_hashCode: string
_src: VertexId

Accessors

Methods

Generated using TypeDoc