UnweightedEdge
public struct UnweightedEdge : Edge, CustomStringConvertible, Equatable
A basic unweighted edge.
-
Declaration
Swift
public var u: Int -
Declaration
Swift
public var v: Int -
Undocumented
Declaration
Swift
public var directed: Bool -
Undocumented
Declaration
Swift
public init(u: Int, v: Int, directed: Bool) -
Undocumented
Declaration
Swift
public func reversed() -> UnweightedEdge -
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public static func == (lhs: UnweightedEdge, rhs: UnweightedEdge) -> Bool
View on GitHub
UnweightedEdge Structure Reference