Edge

class Edge[LN, LE, V](val label: LE, val target: Node[LN, LE, V], val sources: Seq[Node[LN, LE, V]], val action: (Node[LN, LE, V] => V) => V)

Edges for the graph built by GraphBodyBuilder.

Source:
GraphBodyBuilder.scala
class Object
trait Matchable
class Any

Value members

Concrete methods

override def toString: String
Definition Classes
Any
Source:
GraphBodyBuilder.scala

Concrete fields

val action: (Node[LN, LE, V] => V) => V
val sources: Seq[Node[LN, LE, V]]
val target: Node[LN, LE, V]