BasicEdge

data class BasicEdge<V : Any>(val source: V, val target: V) : Edge<V>

BasicEdge is an Edge implementation that only stores the source and target vertices.

Constructors

Link copied to clipboard
fun <V : Any> BasicEdge(source: V, target: V)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val source: V
Link copied to clipboard
open override val target: V