DependencyEdge

public struct DependencyEdge : Edge, CustomStringConvertible, Equatable

Extension of SwiftGraph‘s Edge class that considers Edge roles

  • u

    Declaration

    Swift

    public var u: Int
  • v

    Declaration

    Swift

    public var v: Int
  • Undocumented

    Declaration

    Swift

    public var directed: Bool
  • Undocumented

    Declaration

    Swift

    public var roles: [EdgeRole]
  • Undocumented

    Declaration

    Swift

    public init(u: Int, v: Int, directed: Bool, roles: [EdgeRole])
  • Undocumented

    Declaration

    Swift

    public func reversed() -> DependencyEdge
  • Implement CustomStringConvertible protocol

    Declaration

    Swift

    public var description: String { get }

Operator Overloads

  • Declaration

    Swift

    public static func == (lhs: DependencyEdge, rhs: DependencyEdge) -> Bool