pub fn complete_bipartite<'a, G>(n: usize, m: usize) -> Gwhere
    G: Graph<'a> + Buildable,
Expand description

Returns a complete bipartite graph on n+m nodes.

The edges will run between the first n nodes and the last m nodes. If G is a digraph, the edges will run in this direction.