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

scalax.collection.edges.DiEdge.scala Maven / Gradle / Ivy

The newest version!
package scalax.collection.edges

import scalax.collection.generic.{AbstractGenericUnlabeledDiEdge, DiEdgeToString, EdgeCompanion}

/** Represents a generic unlabeled directed edge.
  */
@SerialVersionUID(55)
final case class DiEdge[+N](source: N, target: N) extends AbstractGenericUnlabeledDiEdge[N, DiEdge] with DiEdgeToString

/** Factory for directed edges.
  * See also `DiEdgeImplicits` and `val ~>` in the package object.
  */
object DiEdge extends EdgeCompanion[DiEdge]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy