External Edge
data class ExternalEdge<V : Any, out E : AbstractEdge>(startFrom: V, endWith: V, value: E) : Edge<V, E> , AbstractEdge
Content copied to clipboard
Represents edge with value which implements AbstractEdge interface.
Author
Alexander Kornilov (akornilov.82@gmail.com).
Constructors
ExternalEdge
Link copied to clipboard
fun <V : Any, out E : AbstractEdge> ExternalEdge(startFrom: V, endWith: V, value: E)
Content copied to clipboard