toggle menu
kotlin-stdlib-project
0.1.0-SNAPSHOT
common
switch theme
search in API
kotlin-stdlib
/
com.javiersc.kotlin.stdlib.graph
Package-level
declarations
Types
Functions
Types
Graph
Link copied to clipboard
interface
Graph
<
T
>
:
Map
<
Graph.Vertex
<
T
>
,
List
<
Graph.Edge
<
T
>
>
>
Mutable
Graph
Link copied to clipboard
class
MutableGraph
<
T
>
:
Graph
<
T
>
Functions
build
Graph
Link copied to clipboard
fun
<
T
>
buildGraph
(
builderAction
:
MutableGraph
<
T
>
.
(
)
->
Unit
=
{}
)
:
Graph
<
T
>
mutable
Graph
Of
Link copied to clipboard
fun
<
T
>
mutableGraphOf
(
builderAction
:
MutableGraph
<
T
>
.
(
)
->
Unit
=
{}
)
:
MutableGraph
<
T
>