Package-level declarations

Types

Link copied to clipboard
interface Graph<T> : Map<Graph.Vertex<T>, List<Graph.Edge<T>>>
Link copied to clipboard
class MutableGraph<T> : Graph<T>

Functions

Link copied to clipboard
fun <T> buildGraph(builderAction: MutableGraph<T>.() -> Unit = {}): Graph<T>
Link copied to clipboard
fun <T> mutableGraphOf(builderAction: MutableGraph<T>.() -> Unit = {}): MutableGraph<T>