Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: Edge<TWeight, TLabel>(TWeight, TLabel, Node<TWeight, TLabel>)

  • Declared in: RT.Dijkstra.Edge<TWeight, TLabel>

Declaration

public Edge<TWeight, TLabel>(
    TWeight weight,
    TLabel label,
    Node<TWeight, TLabel> node
)

Summary

Initializes a new instance of Edge<TWeight, TLabel>.

Parameters

TWeightweight The weight of this edge.
TLabellabel The label on this edge.
Node<TWeight, TLabel>node The node this edge points to.