Graph

final case class Graph[Key, A](nodes: List[Node[Key, A]], keyEquals: (Key, Key) => Boolean)
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def buildComplete(outputs: List[Key]): Either[::[GraphError[Key, A]], LayerTree[A]]
def buildNodes(nodes: List[Node[Key, A]]): Either[::[GraphError[Key, A]], LayerTree[A]]
def map[B](f: A => B): Graph[Key, B]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product