getEdges

abstract fun getEdges(startFrom: V, endWith: V, limit: Int = -1): Collection<Edge<V, E>>

Returns list of the edges which starts from startFrom and ends with endWith. The result list can be limited by limit.

Throws