Packages

package labeled

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. labeled
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type GenericEdgeMapper[+CC[X] <: Edge[X]] = generic.GenericEdgeMapper[CC]
  2. abstract class LDiEdge[+N, L] extends AnyDiEdge[N] with SingleLabel[L] with LDiEdgeToString

    Template for generic directed edges with a single label field.

    Template for generic directed edges with a single label field. Equality is based solely on the ends so this trait is not suitable for multigraphs. Mix in GenericEdgeMapper to get your derived edge also mappable.

  3. abstract class LDiEdgeInfixConstructor[N, L, CC[X] <: Edge[X] with SingleLabel[L]] extends AnyRef

    Template for an implicit class that defines the infix constructor + to pass a label like 1 ~> 2 :+ aLabel.

  4. abstract class LUnDiEdge[+N, L] extends AnyUnDiEdge[N] with SingleLabel[L] with LUnDiEdgeToString

    Template for generic undirected edges with a single label field.

    Template for generic undirected edges with a single label field. Equality is based solely on the nodes so this trait is not suitable for multigraphs. Mix in GenericEdgeMapper to get your derived edge also mappable.

  5. abstract class LUnDiEdgeInfixConstructor[N, L, CC[X] <: Edge[X] with SingleLabel[L]] extends AnyRef

    Template for an implicit class that defines the infix constructor + to pass a label like 1 ~> 2 :+ aLabel.

  6. final case class WDiEdge[+N](source: N, target: N, weight: Double) extends AbstractGenericDiEdge[N, WDiEdge] with WDiEdgeToString with Product with Serializable

    Generic weighted directed edge.

    Generic weighted directed edge.

    Annotations
    @SerialVersionUID()
  7. implicit final class WDiEdgeFactory[N] extends AnyVal

    Factory shortcut for weighted edges that can be used like a ~> b % w.

  8. final case class WUnDiEdge[+N](source: N, target: N, weight: Double) extends AbstractGenericUnDiEdge[N, WUnDiEdge] with WUnDiEdgeToString with Product with Serializable

    Generic weighted undirected edge.

    Generic weighted undirected edge.

    Annotations
    @SerialVersionUID()
  9. implicit final class WUnDiEdgeFactory[N] extends AnyVal

    Factory shortcut for weighted edges that can be used like a ~ b % w.

Value Members

  1. val %: generic.%.type
  2. object :~

    Infix extractor for weighted undirected edges to be combined with % like case a :~ b % w.

  3. object :~>

    Infix extractor for weighted directed edges to be combined with % like case a :~> b % w.

Inherited from AnyRef

Inherited from Any

Ungrouped