MCPcopy Create free account
hub / github.com/arnauddri/algorithms / Edge

Struct Edge

data-structures/graph/graph.go:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9type Vertices []VertexId
10
11type Edge struct {
12 From VertexId
13 To VertexId
14}
15
16type graph struct {
17 edges map[VertexId]map[VertexId]int

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected