AddEdges - Add edges to graph
(e []*Edge)
| 41 | |
| 42 | // AddEdges - Add edges to graph |
| 43 | func (g *Graph) AddEdges(e []*Edge) { |
| 44 | g.edges = append(g.edges, e...) |
| 45 | } |
| 46 | |
| 47 | // AddEdge - Add edge to graph |
| 48 | func (g *Graph) AddEdge(from, to *Node) { |
no outgoing calls
no test coverage detected