6 lines
95 B
Swift
6 lines
95 B
Swift
struct EdgeVertex: Hashable {
|
|
public let vertex: Vertex
|
|
|
|
public var edges: [Vertex] = []
|
|
}
|