All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.magic.macros.graph.Node.scala Maven / Gradle / Ivy

The newest version!
package zio.magic.macros.graph

case class Node[+Key, +A](inputs: List[Key], outputs: List[Key], value: A) {
  def map[B](f: A => B): Node[Key, B] = copy(value = f(value))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy