Node

final case class Node[+Key, +A](inputs: List[Key], outputs: List[Key], value: A)
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def map[B](f: A => B): Node[Key, B]

Inherited methods

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