Edge
public protocol Edge : CustomStringConvertible, Decodable, Encodable
A protocol that all edges in a graph must conform to.
-
The origin vertex of the edge
Declaration
Swift
var u: Int { get set }
-
The destination vertex of the edge
Declaration
Swift
var v: Int { get set }
-
Undocumented
Declaration
Swift
var directed: Bool { get set }
-
Undocumented
Declaration
Swift
func reversed() -> Self