Get the designated edge from this graph. Only the start and end node will be compared.
auto g1 = Graph!(int, int)([1, 2]); auto e1 = g1.edge(1, 2, 1); g1 ~= e1; assert(g1.get(g1.edge(1, 2)) == e1); assertThrown!MissingEdgeException(g1.get(g1.edge(1, 1)));
See Implementation
Get the designated edge from this graph. Only the start and end node will be compared.