scalax.collection

GraphPredef

object GraphPredef

This object serves as a container for several Graph-related definitions like parameter-types and implicit conversions.

You will usually simply import all its members along with the members of EdgeOut:

import scalax.collection.GraphPredef._, scalax.collection.EdgeOut._
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. GraphPredef
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type DiHyperEdgeLikeIn[N] = DiHyperEdgeLike[N] with EdgeCopy[DiHyperEdgeLike] with EdgeIn[N, DiHyperEdgeLike]

    Denotes all directed edge types for the E type parameter of a Graph.

    Denotes all directed edge types for the E type parameter of a Graph. Supplying this type as the actual type parameter allows to include any kind of directed edges such as directed hyper-edges and directed edges.

  2. final class EdgeAssoc[N1] extends AnyRef

  3. trait EdgeIn[NI, +EI[X <: NI] <: EdgeLike[X]] extends GraphParamIn[NI, EI] with GraphParamEdge

    Classes implementing EdgeLike must be instantiated mixing in this trait.

  4. type EdgeLikeIn[N] = EdgeLike[N] with EdgeCopy[EdgeLike] with EdgeIn[N, EdgeLike]

    The most generic type for the E type parameter of a Graph.

    The most generic type for the E type parameter of a Graph. Supplying this type as the actual type parameter allows to include any kind of edges such as hyper-edges, undirected and directed edges.

  5. trait EdgeOut[NI, +EI[X <: NI] <: EdgeLike[X], NO <: NodeOut[NI], +EO[X <: NO] <: EdgeLike[X]] extends GraphParamOut[NI, EI] with GraphParamEdge

  6. sealed trait GraphParam[N, +E[X <: N] <: EdgeLike[X]] extends AnyRef

    This algebraic type serves as the type parameter to SetLike.

  7. sealed trait GraphParamEdge extends AnyRef

  8. sealed trait GraphParamIn[NI, +EI[X <: NI] <: EdgeLike[X]] extends GraphParam[NI, EI]

  9. trait GraphParamNode[N] extends AnyRef

  10. sealed trait GraphParamOut[NO, +EO[X <: NO] <: EdgeLike[X]] extends GraphParam[NO, EO]

  11. final class HyperEdgeAssoc[NOld] extends AnyRef

  12. case class NodeIn[NI](value: NI) extends GraphParamIn[NI, Nothing] with GraphParamNode[NI] with Product with Serializable

  13. trait NodeOut[NI] extends GraphParamOut[NI, Nothing] with GraphParamNode[NI]

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object EdgeOut

  7. object GraphParam

  8. object NodeOut

  9. implicit def any2EdgeAssoc[N1](n: N1): EdgeAssoc[N1]

  10. implicit def anyToNode[N](n: N): NodeIn[N]

    Annotations
    @inline()
  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. implicit def edge2HyperEdgeAssoc[NOld](e: EdgeLikeIn[NOld]): HyperEdgeAssoc[NOld]

  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  18. implicit def graphParamsToPartition[N, E[X] <: EdgeLikeIn[X]](elems: Iterable[GraphParam[N, E]]): Partitions[N, E]

  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def nodePredicate[NI, EI[X <: NI] <: EdgeLike[X], NO <: NodeOut[NI], EO[X <: NO] <: EdgeLike[X]](pred: (NI) ⇒ Boolean): (GraphParam[NI, EI]) ⇒ Boolean

  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. implicit def predicateToNodePredicate[NI, EI[X <: NI] <: EdgeLike[X], NO <: NodeOut[NI], EC[X <: NO] <: EdgeLike[X]](p: (NI) ⇒ Boolean): (GraphParam[NI, EI]) ⇒ Boolean

    Annotations
    @inline()
  26. implicit def seqToGraphParam[N, E[X <: N] <: EdgeLikeIn[X]](s: Seq[N]): Seq[GraphParamIn[N, E]]

    Annotations
    @inline()
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped