Object

scalax.collection.edge

Implicits

Related Doc: package edge

Permalink

object Implicits

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Implicits
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. final class LDiEdgeAssoc[N] extends AnyRef

    Permalink
  2. final class LDiHyperEdgeAssoc[N] extends AnyRef

    Permalink
  3. final class LHyperEdgeAssoc[N] extends AnyRef

    Permalink
  4. final class LUnDiEdgeAssoc[N] extends AnyRef

    Permalink
  5. final class WDiEdgeAssoc[N] extends AnyRef

    Permalink
  6. final class WDiHyperEdgeAssoc[N] extends AnyRef

    Permalink
  7. final class WHyperEdgeAssoc[N] extends AnyRef

    Permalink
  8. final class WUnDiEdgeAssoc[N] extends AnyRef

    Permalink
  9. final class XEdgeAssoc[N1] extends AnyRef

    Permalink
  10. final class XHyperEdgeAssoc[NOld] extends AnyRef

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. object %

    Permalink

    Weight extractor to be combined with :~ or :~>.

  4. object %+

    Permalink

    Weight and label extractor to be combined with :~ or :~>.

  5. object +

    Permalink

    Label extractor to be combined with :~ or :~>.

  6. object :~

    Permalink

    Extractors for weighted and/or labeled undirected edges.

    Extractors for weighted and/or labeled undirected edges.

    object StringLabel extends LEdgeImplicits[String]
    import StringLabel._
    
    val lE = (n1 ~+ n2)(label)
    lE match { case LUnDiEdge(s, t, l) => f(s, t, l) } // constructor pattern
    lE match { case s :~ t + l         => f(s, t, l) } // infix op pattern
    
    val lkE = (n1 ~+# n2)(label)
    lkE match { case s :~ t + l => f(s, t, l) }
  7. object :~>

    Permalink

    Extractors for weighted and/or labeled directed edges.

    Extractors for weighted and/or labeled directed edges.

    object StringLabel extends LEdgeImplicits[String]
    import StringLabel._
    
    val lDi = (n1 ~+> n2)(label)
    lDi match { case LDiEdge(s, t, l) => f(s, t, l) } // constructor pattern
    lDi match { case s :~> t + l      => f(s, t, l) } // infix op pattern
    
    val lkDi = (n1 ~+#> n2)(label)
    lkDi match { case s :~> t + l     => f(s, t, l) }
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. implicit def any2XEdgeAssoc[N1](n: N1): XEdgeAssoc[N1]

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. implicit def edge2LDiEdgeAssoc[N](e: DiEdge[N]): LDiEdgeAssoc[N]

    Permalink
  13. implicit def edge2LDiHyperEdgeAssoc[N](e: DiHyperEdge[N]): LDiHyperEdgeAssoc[N]

    Permalink
  14. implicit def edge2LHyperEdgeAssoc[N](e: HyperEdge[N]): LHyperEdgeAssoc[N]

    Permalink
  15. implicit def edge2LUnDiEdgeAssoc[N](e: UnDiEdge[N]): LUnDiEdgeAssoc[N]

    Permalink
  16. implicit def edge2WDiEdgeAssoc[N](e: DiEdge[N]): WDiEdgeAssoc[N]

    Permalink
  17. implicit def edge2WDiHyperEdgeAssoc[N](e: DiHyperEdge[N]): WDiHyperEdgeAssoc[N]

    Permalink
  18. implicit def edge2WHyperEdgeAssoc[N](e: HyperEdge[N]): WHyperEdgeAssoc[N]

    Permalink
  19. implicit def edge2WUnDiEdgeAssoc[N](e: UnDiEdge[N]): WUnDiEdgeAssoc[N]

    Permalink
  20. implicit def edge2XHyperEdgeAssoc[NOld](e: EdgeLike[NOld]): XHyperEdgeAssoc[NOld]

    Permalink
  21. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped