mutableGraphOf

fun <V : Any, E : Any> mutableGraphOf(): MutableGraph<V, E>

Creates an empty mutable graph.

fun <V : Any, E : Any> mutableGraphOf(vararg values: V): MutableGraph<V, E>

Creates a mutable graph with vertexes.

fun <V : Any, E : Any> mutableGraphOf(vararg edges: Edge<V, E>): MutableGraph<V, E>

Creates a mutable graph by edges.