package collections
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class DiGraph[K, +N, +L](nodes: Map[K, N] = Map.empty[K, N], links: Vector[DiLink[K, L]] = Vector.empty) extends Product with Serializable
Directed immutable Graph.
Directed immutable Graph.
- K
key for accessing nodes
- N
node data
- L
link data
- case class DiLink[K, +L](from: K, to: K, data: L) extends Product with Serializable
A Link inside DiGraph
A Link inside DiGraph
- from
the id from which it is going
- to
the id to which it is going
- data
data attached to it.
Value Members
- object DiGraph extends Serializable