toggle menu
kotlin-stdlib-project
0.1.1-SNAPSHOT
common
switch theme
search in API
kotlin-stdlib
/
com.javiersc.kotlin.stdlib.graph
/
Graph
/
Edge
Edge
data
class
Edge
<
T
>
(
val
source
:
Graph.Vertex
<
T
>
,
val
destination
:
Graph.Vertex
<
T
>
)
Members
Constructors
Edge
Link copied to clipboard
constructor
(
source
:
Pair
<
Int
,
T
>
,
destination
:
Pair
<
Int
,
T
>
)
constructor
(
source
:
Graph.Vertex
<
T
>
,
destination
:
Graph.Vertex
<
T
>
)
Properties
destination
Link copied to clipboard
val
destination
:
Graph.Vertex
<
T
>
source
Link copied to clipboard
val
source
:
Graph.Vertex
<
T
>
Functions
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String