Packages

  • package root

    Welcome to the Graph for Scala API reference.

    Welcome to the Graph for Scala API reference. Some suggested navigation entry points:

    Definition Classes
    root
  • package scalax
    Definition Classes
    root
  • package collection

    Contains the base traits and objects needed to use Graph for Scala.

    Contains the base traits and objects needed to use Graph for Scala.

    See also the Graph for Scala Core User Guide.

    Definition Classes
    scalax
  • package edge

    Predefined edges.

    Predefined edges.

    While basic edge types are defined in the object GraphEdge, the predefined edges in this package cover the following categories (prefixes, shortcuts):

    weighted (W, %), key-weighted (Wk, %#), labeled (L, +), key-labeled (Lk, +#), weighted and labeled (WL, %+), key-weighted and labeled (WkL, %#+), weighted and key-labeled (WLk, %+#) and key-weighted and key-labeled (WkLk, %#+#).

    These predefined edges provide alternatives for any edge extension taking the burden from the user to implement his/her custom edge class - but baring the disadvantage that user edge attributes must be part of a label class as opposed to being part of the edge class directly. It may also serve as a source for looking up how to implement custom edge classes.

    Definition Classes
    collection
  • object CBase

    Base traits for custom edges - hence the C prefix.

    Base traits for custom edges - hence the C prefix. Note that custom edges need only to mix in CBase.Attributes when importing by fromJson.

    Definition Classes
    edge
  • Attributes
  • CEdgeCompanion
  • CEdgeCompanionBase
  • CHyperEdgeCompanion
t

scalax.collection.edge.CBase

CEdgeCompanionBase

trait CEdgeCompanionBase[E[X] <: EdgeLikeIn[X] with CHyperEdgeBound[_, E]] extends EdgeCompanionBase[E]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CEdgeCompanionBase
  2. EdgeCompanionBase
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by EdgeAssoc
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  2. def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  3. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  4. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  5. def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  6. val n1: CEdgeCompanionBase[E]
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to EdgeAssoc[CEdgeCompanionBase[E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  7. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  8. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to CollectionsHaveToParArray[CEdgeCompanionBase[E], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (CEdgeCompanionBase[E]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  9. val value: CEdgeCompanionBase[E]
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  10. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to EdgeAssoc[CEdgeCompanionBase[E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  11. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to EdgeAssoc[CEdgeCompanionBase[E]] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def toString(): String
    Implicit
    This member is added by an implicit conversion from CEdgeCompanionBase[E] to OuterNode[CEdgeCompanionBase[E]] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (cEdgeCompanionBase: OuterNode[CEdgeCompanionBase[E]]).toString()
    Definition Classes
    NodeParam → AnyRef → Any