openrndr
Toggle table of contents
0.4.5-dev.17.uncommitted+81afe70
common
Platform filter
common
Switch theme
Search in API
openrndr
openrndr-kartifex
/
org.openrndr.kartifex.utils.graphs
Package-level
declarations
Types
Functions
Types
Directed
Graph
Link copied to clipboard
class
DirectedGraph
<
V
,
E
>
(
val
out
:
MutableMap
<
V
,
MutableMap
<
V
,
E
>
>
=
mutableMapOf()
,
val
in
:
MutableMap
<
V
,
MutableSet
<
V
>
>
=
mutableMapOf()
)
Edge
Link copied to clipboard
@
JvmRecord
data
class
Edge
<
V
,
E
>
(
val
_value
:
E
,
val
_from
:
V
,
val
_to
:
V
)
:
IEdge
<
V
,
E
>
Graphs
Link copied to clipboard
object
Graphs
IEdge
Link copied to clipboard
interface
IEdge
<
V
,
E
>
Functions
index
Of
Link copied to clipboard
fun
<
E
>
Set
<
E
>
.
indexOf
(
e
:
E
)
:
Int