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

flatgraph.Implicits.scala Maven / Gradle / Ivy

There is a newer version: 0.0.91
Show newest version
package flatgraph

object Implicits extends Implicits

trait Implicits {

  extension [NodeType <: GNode](node: NodeType) {

    /** start a new Traversal with this Node, i.e. lift it into a Traversal */
    def start: Iterator[NodeType] =
      Iterator.single(node)
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy