MCPcopy Index your code
hub / github.com/arnauddri/algorithms / graph

Struct graph

data-structures/graph/graph.go:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16type graph struct {
17 edges map[VertexId]map[VertexId]int
18 edgesCount int
19 isDirected bool
20}
21
22type EdgesIterable interface {
23 EdgesIter() <-chan Edge

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected