Struct SEdge<TVertex>
The default struct based IEdge<TVertex> implementation (it is by design an equatable edge) (directed edge).
Implements
IEdge<TVertex>
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
[Serializable]
public struct SEdge<TVertex> : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
Constructors
| Improve this Doc View SourceSEdge(TVertex, TVertex)
Initializes a new instance of the SEdge<TVertex> struct.
Declaration
public SEdge(TVertex source, TVertex target)
Parameters
Type | Name | Description |
---|---|---|
TVertex | source | The source vertex. |
TVertex | target | The target vertex. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ArgumentNullException |
|
Properties
| Improve this Doc View SourceSource
Gets the source vertex.
Declaration
public readonly TVertex Source { get; }
Property Value
Type | Description |
---|---|
TVertex |
Target
Gets the target vertex.
Declaration
public readonly TVertex Target { get; }
Property Value
Type | Description |
---|---|
TVertex |
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.ValueType.ToString()