scalax.collection.GraphEdge

DiHyperEdgeLike

trait DiHyperEdgeLike[+N] extends EdgeLike[N] with EqDiHyper

Template trait for directed edges.

Any class representing directed edges must inherit from this trait.

Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DiHyperEdgeLike
  2. EqDiHyper
  3. EdgeLike
  4. Serializable
  5. Serializable
  6. Eq
  7. Iterable
  8. IterableLike
  9. Equals
  10. GenIterable
  11. GenIterableLike
  12. Traversable
  13. GenTraversable
  14. GenericTraversableTemplate
  15. TraversableLike
  16. GenTraversableLike
  17. Parallelizable
  18. TraversableOnce
  19. GenTraversableOnce
  20. FilterMonadic
  21. HasNewBuilder
  22. AnyRef
  23. Any
Implicitly
  1. by traversable2ops
  2. by MonadOps
  3. by any2stringadd
  4. by any2stringfmt
  5. by any2ArrowAssoc
  6. by any2Ensuring
  7. by alternateImplicit
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Iterable[N]

    Attributes
    protected
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def isAt(pred: (N) ⇒ Boolean): Boolean

    true if any end of this edge fulfills pred.

    true if any end of this edge fulfills pred.

    Definition Classes
    EdgeLike
  2. abstract def isAt[M >: N](node: M): Boolean

    true if node is incident with this edge.

    true if node is incident with this edge.

    Definition Classes
    EdgeLike
  3. abstract def isValidArity(size: Int): Boolean

    A function to determine whether the arity of the passed Product of nodes (that is the number of edge ends) is valid.

    A function to determine whether the arity of the passed Product of nodes (that is the number of edge ends) is valid. This function is called on every edge-instantiation by validate that throws EdgeException if this method returns false.

    Attributes
    protected
    Definition Classes
    EdgeLike
  4. abstract def iterator: Iterator[N]

    Iterator for the nodes (end-points) of this edge.

    Iterator for the nodes (end-points) of this edge.

    Definition Classes
    EdgeLike → IterableLike → GenIterableLike
  5. abstract def nodes: Product

    The end nodes joined by this edge.

    The end nodes joined by this edge.

    Nodes will typically be represented by Tuples. Alternatively subclasses of Iterable implementing Product, such as List, may also be used. In the latter case be aware of higher memory footprint.

    Definition Classes
    EdgeLike

Concrete 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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[B >: N, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: N, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike
  7. def ++:[B >: N, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike
  8. def ->[B](y: B): (DiHyperEdgeLike[N], B)

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to ArrowAssoc[DiHyperEdgeLike[N]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. def /:[B](z: B)(op: (B, N) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. def :\[B](z: B)(op: (N, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  13. final def _1: N

    The first node.

    The first node. Same as _n(0).

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  14. def _2: N

    The second node.

    The second node. Same as _n(1).

    Definition Classes
    EdgeLike
  15. def _n(n: Int): N

    The n'th node with 0 <= n < arity.

    The n'th node with 0 <= n < arity.

    Definition Classes
    EdgeLike
  16. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  18. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  19. def aggregate[B](z: B)(seqop: (B, N) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. final def arity: Int

    Number of nodes linked by this Edge.

    Number of nodes linked by this Edge. At least two nodes are linked. In case of a hook, the two nodes are identical. Hyper-edges may link more than two nodes.

    Definition Classes
    EdgeLike
  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. def asParIterable: ParIterable[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  23. def asParSeq: ParSeq[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  24. def attributesToString: String

    Attributes
    protected
    Definition Classes
    EdgeLike
  25. def baseEquals(other: EdgeLike[_]): Boolean

    Attributes
    protected
    Definition Classes
    EqDiHyperEq
  26. def baseHashCode: Int

    Attributes
    protected
    Definition Classes
    EqDiHyperEq
  27. def brackets: Brackets

    Attributes
    protected
    Definition Classes
    EdgeLike
  28. def canEqual(that: Any): Boolean

    Definition Classes
    EdgeLike → IterableLike → Equals
  29. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def collect[B, That](pf: PartialFunction[N, B])(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  31. def collectFirst[B](pf: PartialFunction[N, B]): Option[B]

    Definition Classes
    TraversableOnce
  32. def companion: GenericCompanion[Iterable]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  33. final def contains[M >: N](node: M): Boolean

    Same as isAt.

    Same as isAt.

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  34. def copyToArray[B >: N](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. def copyToArray[B >: N](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def copyToArray[B >: N](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def copyToBuffer[B >: N](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  38. def count(p: (N) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. final def directed: Boolean

    true it this edge is directed.

    true it this edge is directed.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
    Annotations
    @inline()
  40. def drop(n: Int): Iterable[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  41. def dropRight(n: Int): Iterable[N]

    Definition Classes
    IterableLike
  42. def dropWhile(p: (N) ⇒ Boolean): Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  43. def ensuring(cond: (DiHyperEdgeLike[N]) ⇒ Boolean, msg: ⇒ Any): DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: (DiHyperEdgeLike[N]) ⇒ Boolean): DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. def ensuring(cond: Boolean, msg: ⇒ Any): DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: Boolean): DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  48. def equals(other: EdgeLike[_]): Boolean

    Preconditions: this.directed == that.directed && this.isInstanceOf[Keyed] == that.isInstanceOf[Keyed]

    Preconditions: this.directed == that.directed && this.isInstanceOf[Keyed] == that.isInstanceOf[Keyed]

    Attributes
    protected
    Definition Classes
    EdgeLike
  49. def equals(other: Any): Boolean

    Definition Classes
    EdgeLike → Equals → AnyRef → Any
  50. def exists(p: (N) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  51. def filter(p: (N) ⇒ Boolean): Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  52. def filterNot(p: (N) ⇒ Boolean): Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  53. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  54. def find(p: (N) ⇒ Boolean): Option[N]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  55. def flatMap[B, That](f: (N) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  56. def flatten[B](implicit asTraversable: (N) ⇒ GenTraversableOnce[B]): Iterable[B]

    Definition Classes
    GenericTraversableTemplate
  57. def fold[A1 >: N](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  58. def foldLeft[B](z: B)(op: (B, N) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def foldRight[B](z: B)(op: (N, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  60. def forall(p: (N) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  61. def foreach[U](f: (N) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  62. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  63. final def from: N

    Synonym for source.

    Synonym for source.

    Annotations
    @inline()
  64. def genericBuilder[B]: Builder[B, Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
  65. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  66. def groupBy[K](f: (N) ⇒ K): Map[K, Iterable[N]]

    Definition Classes
    TraversableLike → GenTraversableLike
  67. def grouped(size: Int): Iterator[Iterable[N]]

    Definition Classes
    IterableLike
  68. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  69. def hasSource(pred: (N) ⇒ Boolean): Boolean

    true if any source end of this edge fulfills pred.

    true if any source end of this edge fulfills pred.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  70. def hasSource[M >: N](node: M): Boolean

    true if node is a source of this edge.

    true if node is a source of this edge. In case this edge is undirected this method maps to isAt.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  71. def hasTarget(pred: (N) ⇒ Boolean): Boolean

    true if any target end of this edge fulfills pred.

    true if any target end of this edge fulfills pred.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  72. def hasTarget[M >: N](node: M): Boolean

    true if node is a target of this edge.

    true if node is a target of this edge. In case this edge is undirected this method maps to isAt.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  73. def hashCode(): Int

    Definition Classes
    EdgeLike → AnyRef → Any
  74. def head: N

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  75. def headOption: Option[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  76. def ifParSeq[R](isbody: (ParSeq[N]) ⇒ R): (TraversableOps[N])#Otherwise[R]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  77. def init: Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  78. def inits: Iterator[Iterable[N]]

    Definition Classes
    TraversableLike
  79. final def isDirected: Boolean

    Same as directed.

    Same as directed.

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  80. def isEmpty: Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  81. def isHyperEdge: Boolean

    true if this is a hyperedge that is it may have more than two ends.

    true if this is a hyperedge that is it may have more than two ends.

    Definition Classes
    EdgeLike
  82. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  83. def isLabeled: Boolean

    true if this edge is labeled.

    true if this edge is labeled. See also label.

    Definition Classes
    EdgeLike
  84. def isLooping: Boolean

    true if this edge produces a self-loop.

    true if this edge produces a self-loop. In case of a non-hyperedge, a loop is given if the incident nodes are equal. In case of a directed hyperedge, a loop is given if the source is equal to any of the targets. In case of an undirected hyperedge, a loop is given if any pair of incident nodes has equal nodes.

    Definition Classes
    EdgeLike
  85. def isParIterable: Boolean

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  86. def isParSeq: Boolean

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  87. def isParallel: Boolean

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  88. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  89. final def isUndirected: Boolean

    Same as undirected.

    Same as undirected.

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  90. def isValidCustom: Boolean

    This method may be overridden to enforce additional validation at edge creation time.

    This method may be overridden to enforce additional validation at edge creation time. Be careful to call super.isValidCustom when overriding. This function is called on every edge-instantiation by validate that throws EdgeException if this method returns false.

    Attributes
    protected
    Definition Classes
    EdgeLike
  91. def isValidCustomExceptionMessage: String

    Attributes
    protected
    Definition Classes
    EdgeLike
  92. def label: Any

    The label of this edge.

    The label of this edge. If Graph's edge type parameter has been inferred or set to a labeled edge type all contained edges are labeled. Otherwise you should assert, for instance by calling isLabeled, that the edge instance is labeled before calling this method.

    Note that label is normally not part of the edge key (hashCode) meaning that edges of different labels connecting the same nodes will be treated as equal and not added more than once. If you need multi-edges based on different labels you should either make use of a predefined key-labeled edge type such as LDiEdge or define a custom edge class that mixes in ExtendedKey and adds label to keyAttributes.

    Definition Classes
    EdgeLike
    Exceptions thrown
    UnsupportedOperationException

    if the edge is non-labeled.

  93. def last: N

    Definition Classes
    TraversableLike → GenTraversableLike
  94. def lastOption: Option[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  95. def map[B, That](f: (N) ⇒ B)(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  96. def matches(p1: (N) ⇒ Boolean, p2: (N) ⇒ Boolean): Boolean

    true if
    a) two distinct ends of this undirected edge exist for which p1 and p2 hold or
    b) p1 holds for a source and p2 for a target of this directed edge.

    true if
    a) two distinct ends of this undirected edge exist for which p1 and p2 hold or
    b) p1 holds for a source and p2 for a target of this directed edge.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  97. def matches[M >: N](n1: M, n2: M): Boolean

    true if
    a) both n1 and n2 are at this edge for an undirected edge
    b) n1 is a source and n2 a target of this edge for a directed edge.

    true if
    a) both n1 and n2 are at this edge for an undirected edge
    b) n1 is a source and n2 a target of this edge for a directed edge.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  98. def max[B >: N](implicit cmp: Ordering[B]): N

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def maxBy[B](f: (N) ⇒ B)(implicit cmp: Ordering[B]): N

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def min[B >: N](implicit cmp: Ordering[B]): N

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def minBy[B](f: (N) ⇒ B)(implicit cmp: Ordering[B]): N

    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  106. def newBuilder: Builder[N, Iterable[N]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  107. def nodeSeq: Seq[N]

    Sequence of the end points of this edge.

    Sequence of the end points of this edge.

    Definition Classes
    EdgeLike
  108. def nodesToString: String

    Attributes
    protected
    Definition Classes
    EdgeLike
  109. def nodesToStringSeparator: String

    Attributes
    protected
    Definition Classes
    DiHyperEdgeLikeEdgeLike
  110. def nodesToStringWithParenthesis: Boolean

    Attributes
    protected
    Definition Classes
    EdgeLike
  111. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. final def nonHyperEdge: Boolean

    true if this edge has exactly two ends.

    true if this edge has exactly two ends.

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  113. final def nonLooping: Boolean

    Same as ! looping.

    Same as ! looping.

    Definition Classes
    EdgeLike
  114. final def notify(): Unit

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

    Definition Classes
    AnyRef
  116. final def nrEqualingNodes(itA: Iterator[_], itB: Iterable[_]): Int

    Attributes
    protected
    Definition Classes
    Eq
  117. def par: ParIterable[N]

    Definition Classes
    Parallelizable
  118. def parCombiner: Combiner[N, ParIterable[N]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  119. def partition(p: (N) ⇒ Boolean): (Iterable[N], Iterable[N])

    Definition Classes
    TraversableLike → GenTraversableLike
  120. def product[B >: N](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def reduce[A1 >: N](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def reduceLeft[B >: N](op: (B, N) ⇒ B): B

    Definition Classes
    TraversableOnce
  123. def reduceLeftOption[B >: N](op: (B, N) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def reduceOption[A1 >: N](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def reduceRight[B >: N](op: (N, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  126. def reduceRightOption[B >: N](op: (N, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def repr: Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  128. def reversed: List[N]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  129. def sameElements[B >: N](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  130. def scan[B >: N, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  131. def scanLeft[B, That](z: B)(op: (B, N) ⇒ B)(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  132. def scanRight[B, That](z: B)(op: (N, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[N], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  133. def seq: Iterable[N]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  134. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def slice(from: Int, until: Int): Iterable[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  136. def sliding(size: Int, step: Int): Iterator[Iterable[N]]

    Definition Classes
    IterableLike
  137. def sliding(size: Int): Iterator[Iterable[N]]

    Definition Classes
    IterableLike
  138. final def source: N

    The single source node of this directed edge.

    The single source node of this directed edge.

    Annotations
    @inline()
  139. def span(p: (N) ⇒ Boolean): (Iterable[N], Iterable[N])

    Definition Classes
    TraversableLike → GenTraversableLike
  140. def splitAt(n: Int): (Iterable[N], Iterable[N])

    Definition Classes
    TraversableLike → GenTraversableLike
  141. def stringPrefix: String

    Definition Classes
    EdgeLike → TraversableLike → GenTraversableLike
  142. def sum[B >: N](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  144. def tail: Iterable[N]

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def tails: Iterator[Iterable[N]]

    Definition Classes
    TraversableLike
  146. def take(n: Int): Iterable[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  147. def takeRight(n: Int): Iterable[N]

    Definition Classes
    IterableLike
  148. def takeWhile(p: (N) ⇒ Boolean): Iterable[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  149. final def target: N

    The target node for a directed edge; one of the target nodes for a directed hyperedge.

    The target node for a directed edge; one of the target nodes for a directed hyperedge.

    Annotations
    @inline()
  150. final def targets: Iterator[N]

    The target nodes of this directed edgeor hyperedge.

    The target nodes of this directed edgeor hyperedge.

    Annotations
    @inline()
  151. def thisCollection: Iterable[N]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  152. final def thisSimpleClassName: String

    Attributes
    protected
    Definition Classes
    EdgeLike
  153. def to: N

    Synonym for target.

  154. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, N, Col[N]]): Col[N]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  155. def toArray[B >: N](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  156. def toBuffer[B >: N]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  157. def toCollection(repr: Iterable[N]): Iterable[N]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  158. def toIndexedSeq: IndexedSeq[N]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def toIterable: Iterable[N]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  160. def toIterator: Iterator[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  161. def toList: List[N]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def toMap[T, U](implicit ev: <:<[N, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  163. def toParArray: ParArray[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to TraversableOps[N] performed by method traversable2ops in scala.collection.parallel.
    Definition Classes
    TraversableOps
  164. def toSeq: Seq[N]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toSet[B >: N]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  166. def toStream: Stream[N]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  167. def toString(): String

    Definition Classes
    EdgeLike → TraversableLike → AnyRef → Any
  168. def toStringWithParenthesis: Boolean

    Attributes
    protected
    Definition Classes
    EdgeLike
  169. def toTraversable: Traversable[N]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  170. def toVector: Vector[N]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def transpose[B](implicit asTraversable: (N) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  172. final def undirected: Boolean

    true it this edge is undirected.

    true it this edge is undirected.

    Definition Classes
    EdgeLike
    Annotations
    @inline()
  173. def unzip[A1, A2](implicit asPair: (N) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Definition Classes
    GenericTraversableTemplate
  174. def unzip3[A1, A2, A3](implicit asTriple: (N) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Definition Classes
    GenericTraversableTemplate
  175. final def validate: Unit

    Performs basic, inevitable edge validation.

    Performs basic, inevitable edge validation. Among others, ensures that nodes ne null and no edge end eq null.

    This validation method must be called in the constructor of any edge class that directly extends or mixes in EdgeLike. To perform additional custom validation isValidCustom is to be overridden.

    Attributes
    protected
    Definition Classes
    EdgeLike
    Exceptions thrown
    EdgeException

    if any of the basic validations or of eventually supplied additional validations fails.

  176. def view(from: Int, until: Int): IterableView[N, Iterable[N]]

    Definition Classes
    IterableLike → TraversableLike
  177. def view: IterableView[N, Iterable[N]]

    Definition Classes
    IterableLike → TraversableLike
  178. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  181. def weight: Long

    The weight of this edge defaulting to 1L.

    The weight of this edge defaulting to 1L.

    Note that weight is normally not part of the edge key (hashCode) meaning that edges of different weights connecting the same nodes will be treated as equal and not added more than once. If you need multi-edges based on different weights you should either make use of a predefined key-weighted edge type such as WDiEdge or define a custom edge class that mixes in ExtendedKey and adds weight to keyAttributes.

    In case of weights of a type other than Long you either convert values of that type to Long prior to edge creation or define a custom edge class to include your own val of that type and override def weight to provide a conversion.

    Definition Classes
    EdgeLike
  182. def withFilter(p: (N) ⇒ Boolean): FilterMonadic[N, Iterable[N]]

    Definition Classes
    TraversableLike → FilterMonadic
  183. def withSources(f: (N) ⇒ Unit): Unit

    Applies f to the source end resp.

    Applies f to the source end resp. to all source ends of this edge.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  184. def withTargets(f: (N) ⇒ Unit): Unit

    Applies f to the target end resp.

    Applies f to the target end resp. to all target ends of this edge.

    Definition Classes
    DiHyperEdgeLikeEdgeLike
  185. def zip[A1 >: N, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[N], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  186. def zipAll[B, A1 >: N, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[N], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  187. def zipWithIndex[A1 >: N, That](implicit bf: CanBuildFrom[Iterable[N], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  188. def [B](y: B): (DiHyperEdgeLike[N], B)

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to ArrowAssoc[DiHyperEdgeLike[N]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (N) ⇒ Boolean): TraversableOnce[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to MonadOps[N] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (diHyperEdgeLike: MonadOps[N]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (N) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to MonadOps[N] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (diHyperEdgeLike: MonadOps[N]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (N) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to MonadOps[N] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (diHyperEdgeLike: MonadOps[N]).map(f)
    Definition Classes
    MonadOps
  4. val self: Any

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (diHyperEdgeLike: StringAdd).self
    Definition Classes
    StringAdd
  5. val self: Any

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (diHyperEdgeLike: StringFormat).self
    Definition Classes
    StringFormat
  6. def withFilter(p: (N) ⇒ Boolean): Iterator[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to MonadOps[N] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (diHyperEdgeLike: MonadOps[N]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def /:\[A1 >: N](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def x: DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to ArrowAssoc[DiHyperEdgeLike[N]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (diHyperEdgeLike: ArrowAssoc[DiHyperEdgeLike[N]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: DiHyperEdgeLike[N]

    Implicit information
    This member is added by an implicit conversion from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (diHyperEdgeLike: Ensuring[DiHyperEdgeLike[N]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from EqDiHyper

Inherited from EdgeLike[N]

Inherited from Serializable

Inherited from Serializable

Inherited from Eq

Inherited from Iterable[N]

Inherited from IterableLike[N, Iterable[N]]

Inherited from Equals

Inherited from GenIterable[N]

Inherited from GenIterableLike[N, Iterable[N]]

Inherited from Traversable[N]

Inherited from GenTraversable[N]

Inherited from TraversableLike[N, Iterable[N]]

Inherited from GenTraversableLike[N, Iterable[N]]

Inherited from Parallelizable[N, ParIterable[N]]

Inherited from TraversableOnce[N]

Inherited from GenTraversableOnce[N]

Inherited from FilterMonadic[N, Iterable[N]]

Inherited from HasNewBuilder[N, Iterable[N]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion traversable2ops from DiHyperEdgeLike[N] to TraversableOps[N]

Inherited by implicit conversion MonadOps from DiHyperEdgeLike[N] to MonadOps[N]

Inherited by implicit conversion any2stringadd from DiHyperEdgeLike[N] to StringAdd

Inherited by implicit conversion any2stringfmt from DiHyperEdgeLike[N] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from DiHyperEdgeLike[N] to ArrowAssoc[DiHyperEdgeLike[N]]

Inherited by implicit conversion any2Ensuring from DiHyperEdgeLike[N] to Ensuring[DiHyperEdgeLike[N]]

Inherited by implicit conversion alternateImplicit from DiHyperEdgeLike[N] to ForceImplicitAmbiguity

Ungrouped