Packages

sealed trait EdgeLike[+N] extends Iterable[N] with Eq with Serializable

Template for Edges in a Graph.

Implementation note: Irrespective of the containing Graph all library-provided Edges are immutable.

N

the user type of the nodes (ends) of this edge.

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EdgeLike
  2. Serializable
  3. Eq
  4. Iterable
  5. IterableFactoryDefaults
  6. IterableOps
  7. IterableOnceOps
  8. IterableOnce
  9. AnyRef
  10. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by ChainingOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class EdgeException extends Exception
    Attributes
    protected

Abstract Value Members

  1. abstract def baseEquals(other: EdgeLike[_]): Boolean
    Attributes
    protected
    Definition Classes
    Eq
  2. abstract def baseHashCode: Int
    Attributes
    protected
    Definition Classes
    Eq
  3. abstract def hasSource(pred: (N) => Boolean): Boolean

    true if any source end of this edge fulfills pred.

  4. abstract 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.

  5. abstract def hasTarget(pred: (N) => Boolean): Boolean

    true if any target end of this edge fulfills pred.

  6. abstract 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.

  7. abstract def isAt(pred: (N) => Boolean): Boolean

    true if any end of this edge fulfills pred.

  8. abstract def isAt[M >: N](node: M): Boolean

    true if node is incident with this edge.

  9. 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
  10. 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 → IterableOnce
  11. abstract 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.

  12. abstract 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.

  13. 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.

  14. abstract def sources: Iterable[N]

    All source ends of this edge.

  15. abstract def targets: Iterable[N]

    All target ends of this edge.

  16. abstract def withSources[U](f: (N) => U): Unit

    Applies f to all source ends of this edge without any memory allocation.

  17. abstract def withTargets[U](f: (N) => U): Unit

    Applies f to the target ends of this edge without any memory allocation.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toany2stringadd[EdgeLike[N]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: N](suffix: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (EdgeLike[N], B)
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toArrowAssoc[EdgeLike[N]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def _1: N

    The first node.

    The first node. Same as _n(0).

    Annotations
    @inline()
  8. def _2: N

    The second node.

    The second node. Same as _n(1).

  9. def _n(n: Int): N

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

  10. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  13. 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. Hyperedges may link more than two nodes.

  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def attributesToString: String
    Attributes
    protected
  16. def brackets: Brackets
    Attributes
    protected
  17. def canEqual(that: Any): Boolean
    Definition Classes
    EdgeLikeEq
  18. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. final def coll: EdgeLike.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  21. def collect[B](pf: PartialFunction[N, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  22. def collectFirst[B](pf: PartialFunction[N, B]): Option[B]
    Definition Classes
    IterableOnceOps
  23. def concat[B >: N](suffix: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  24. final def contains[M >: N](node: M): Boolean

    Same as isAt.

    Same as isAt.

    Annotations
    @inline()
  25. def copyToArray[B >: N](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  26. def copyToArray[B >: N](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  27. def copyToArray[B >: N](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  28. def corresponds[B](that: scala.collection.IterableOnce[B])(p: (N, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  29. def count(p: (N) => Boolean): Int
    Definition Classes
    IterableOnceOps
  30. def directed: Boolean

    true if this edge is directed.

  31. def drop(n: Int): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  32. def dropRight(n: Int): Iterable[N]
    Definition Classes
    IterableOps
  33. def dropWhile(p: (N) => Boolean): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def empty: Iterable[N]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  35. def ensuring(cond: (EdgeLike[N]) => Boolean, msg: => Any): EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toEnsuring[EdgeLike[N]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: (EdgeLike[N]) => Boolean): EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toEnsuring[EdgeLike[N]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: Boolean, msg: => Any): EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toEnsuring[EdgeLike[N]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: Boolean): EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toEnsuring[EdgeLike[N]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. 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
  41. def equals(other: Any): Boolean
    Definition Classes
    EdgeLike → AnyRef → Any
  42. def exists(p: (N) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def filter(pred: (N) => Boolean): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def filterNot(pred: (N) => Boolean): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  45. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  46. def find(p: (N) => Boolean): Option[N]
    Definition Classes
    IterableOnceOps
  47. def flatMap[B](f: (N) => scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def flatten[B](implicit asIterable: (N) => scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def fold[A1 >: N](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  50. def foldLeft[B](z: B)(op: (B, N) => B): B
    Definition Classes
    IterableOnceOps
  51. def foldRight[B](z: B)(op: (N, B) => B): B
    Definition Classes
    IterableOnceOps
  52. def forall(p: (N) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  53. def foreach[U](f: (N) => U): Unit
    Definition Classes
    IterableOnceOps
  54. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toStringFormat[EdgeLike[N]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  55. def fromSpecific(coll: scala.collection.IterableOnce[N]): Iterable[N]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  56. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  57. def groupBy[K](f: (N) => K): Map[K, Iterable[N]]
    Definition Classes
    IterableOps
  58. def groupMap[K, B](key: (N) => K)(f: (N) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  59. def groupMapReduce[K, B](key: (N) => K)(f: (N) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  60. def grouped(size: Int): Iterator[Iterable[N]]
    Definition Classes
    IterableOps
  61. def hashCode(): Int
    Definition Classes
    EdgeLike → AnyRef → Any
  62. def head: N
    Definition Classes
    IterableOps
  63. def headOption: Option[N]
    Definition Classes
    IterableOps
  64. def init: Iterable[N]
    Definition Classes
    IterableOps
  65. def inits: Iterator[Iterable[N]]
    Definition Classes
    IterableOps
  66. final def isDirected: Boolean

    Same as directed.

    Same as directed.

    Annotations
    @inline()
  67. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  68. def isHyperEdge: Boolean

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

  69. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  70. def isLabeled: Boolean

    true if this edge is labeled.

    true if this edge is labeled. See also label.

  71. 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.

  72. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  73. final def isUndirected: Boolean

    Same as undirected.

    Same as undirected.

    Annotations
    @inline()
  74. 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
  75. def isValidCustomExceptionMessage: String
    Attributes
    protected
  76. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  77. def knownSize: Int
    Definition Classes
    IterableOnce
  78. 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). As a result, edges with different labels connecting the same nodes will be evaluated as equal and thus added once and only once to the graph. In case 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.

    Exceptions thrown

    UnsupportedOperationException if the edge is non-labeled.

  79. def last: N
    Definition Classes
    IterableOps
  80. def lastOption: Option[N]
    Definition Classes
    IterableOps
  81. def lazyZip[B](that: Iterable[B]): LazyZip2[N, B, EdgeLike.this.type]
    Definition Classes
    Iterable
  82. def map[B](f: (N) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  83. def max[B >: N](implicit ord: Ordering[B]): N
    Definition Classes
    IterableOnceOps
  84. def maxBy[B](f: (N) => B)(implicit cmp: Ordering[B]): N
    Definition Classes
    IterableOnceOps
  85. def maxByOption[B](f: (N) => B)(implicit cmp: Ordering[B]): Option[N]
    Definition Classes
    IterableOnceOps
  86. def maxOption[B >: N](implicit ord: Ordering[B]): Option[N]
    Definition Classes
    IterableOnceOps
  87. def min[B >: N](implicit ord: Ordering[B]): N
    Definition Classes
    IterableOnceOps
  88. def minBy[B](f: (N) => B)(implicit cmp: Ordering[B]): N
    Definition Classes
    IterableOnceOps
  89. def minByOption[B](f: (N) => B)(implicit cmp: Ordering[B]): Option[N]
    Definition Classes
    IterableOnceOps
  90. def minOption[B >: N](implicit ord: Ordering[B]): Option[N]
    Definition Classes
    IterableOnceOps
  91. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  92. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  93. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  94. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  95. def newSpecificBuilder: Builder[N, Iterable[N]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  96. def nodeSeq: Seq[N]

    Sequence of the end points of this edge.

  97. def nodesToString: String
    Attributes
    protected
  98. def nodesToStringSeparator: String
    Attributes
    protected
  99. def nodesToStringWithParenthesis: Boolean
    Attributes
    protected
  100. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  101. final def nonHyperEdge: Boolean

    true if this edge has exactly two ends.

    true if this edge has exactly two ends.

    Annotations
    @inline()
  102. final def nonLooping: Boolean

    Same as ! looping.

  103. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  104. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  105. def partition(p: (N) => Boolean): (Iterable[N], Iterable[N])
    Definition Classes
    IterableOps
  106. def partitionMap[A1, A2](f: (N) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  107. def pipe[B](f: (EdgeLike[N]) => B): B
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toChainingOps[EdgeLike[N]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  108. def product[B >: N](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  109. def reduce[B >: N](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  110. def reduceLeft[B >: N](op: (B, N) => B): B
    Definition Classes
    IterableOnceOps
  111. def reduceLeftOption[B >: N](op: (B, N) => B): Option[B]
    Definition Classes
    IterableOnceOps
  112. def reduceOption[B >: N](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  113. def reduceRight[B >: N](op: (N, B) => B): B
    Definition Classes
    IterableOnceOps
  114. def reduceRightOption[B >: N](op: (N, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  115. def reversed: Iterable[N]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  116. def scan[B >: N](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  117. def scanLeft[B](z: B)(op: (B, N) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  118. def scanRight[B](z: B)(op: (N, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  119. val self: EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toChainingOps[EdgeLike[N]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  120. def size: Int
    Definition Classes
    IterableOnceOps
  121. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  122. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  123. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  124. def slice(from: Int, until: Int): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  125. def sliding(size: Int, step: Int): Iterator[Iterable[N]]
    Definition Classes
    IterableOps
  126. def sliding(size: Int): Iterator[Iterable[N]]
    Definition Classes
    IterableOps
  127. def span(p: (N) => Boolean): (Iterable[N], Iterable[N])
    Definition Classes
    IterableOps → IterableOnceOps
  128. def splitAt(n: Int): (Iterable[N], Iterable[N])
    Definition Classes
    IterableOps → IterableOnceOps
  129. def stepper[S <: Stepper[_]](implicit shape: StepperShape[N, S]): S
    Definition Classes
    IterableOnce
  130. def stringPrefix: String
    Definition Classes
    EdgeLike → Iterable
  131. def sum[B >: N](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  132. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  133. def tail: Iterable[N]
    Definition Classes
    IterableOps
  134. def tails: Iterator[Iterable[N]]
    Definition Classes
    IterableOps
  135. def take(n: Int): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  136. def takeRight(n: Int): Iterable[N]
    Definition Classes
    IterableOps
  137. def takeWhile(p: (N) => Boolean): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  138. def tap[U](f: (EdgeLike[N]) => U): EdgeLike[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toChainingOps[EdgeLike[N]] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  139. def tapEach[U](f: (N) => U): Iterable[N]
    Definition Classes
    IterableOps → IterableOnceOps
  140. final def thisSimpleClassName: String
    Attributes
    protected
  141. def to[C1](factory: Factory[N, C1]): C1
    Definition Classes
    IterableOnceOps
  142. def toArray[B >: N](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  143. final def toBuffer[B >: N]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. def toIndexedSeq: IndexedSeq[N]
    Definition Classes
    IterableOnceOps
  145. final def toIterable: EdgeLike.this.type
    Definition Classes
    Iterable → IterableOps
  146. def toList: List[N]
    Definition Classes
    IterableOnceOps
  147. def toMap[K, V](implicit ev: <:<[N, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  148. def toSeq: Seq[N]
    Definition Classes
    IterableOnceOps
  149. def toSet[B >: N]: Set[B]
    Definition Classes
    IterableOnceOps
  150. def toString(): String
    Definition Classes
    EdgeLike → Iterable → AnyRef → Any
  151. def toStringWithParenthesis: Boolean
    Attributes
    protected
  152. def toVector: Vector[N]
    Definition Classes
    IterableOnceOps
  153. def transpose[B](implicit asIterable: (N) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  154. final def undirected: Boolean

    true if this edge is undirected.

    true if this edge is undirected.

    Annotations
    @inline()
  155. def unzip[A1, A2](implicit asPair: (N) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  156. def unzip3[A1, A2, A3](implicit asTriple: (N) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  157. 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
    Exceptions thrown

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

  158. def view: View[N]
    Definition Classes
    IterableOps
  159. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  160. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  161. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  162. def weight: Double

    The weight of this edge with a default of 1.

    The weight of this edge with a default of 1.

    Note that weight is normally not part of the edge key (hashCode). As a result, edges with different weights connecting the same nodes will be evaluated as equal and thus added once and only once to the graph. In case 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.

  163. def withFilter(p: (N) => Boolean): WithFilter[N, Iterable]
    Definition Classes
    IterableOps
  164. def zip[B](that: scala.collection.IterableOnce[B]): Iterable[(N, B)]
    Definition Classes
    IterableOps
  165. def zipAll[A1 >: N, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  166. def zipWithIndex: Iterable[(N, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: N](that: scala.collection.IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. def /:[B](z: B)(op: (B, N) => B): B
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. final def /:[B](z: B)(op: (B, N) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (N, B) => B): B
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  5. final def :\[B](z: B)(op: (N, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  6. def aggregate[B](z: => B)(seqop: (B, N) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[N, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[N]): Unit
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  10. final def copyToBuffer[B >: N](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  11. def count(f: (N) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (N) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (N) => Boolean): Iterator[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def find(p: (N) => Boolean): Option[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  15. def flatMap[B](f: (N) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  16. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  17. def foldLeft[B](z: B)(op: (B, N) => B): B
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  18. def foldRight[B](z: B)(op: (N, B) => B): B
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  19. def forall(f: (N) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  20. def foreach[U](f: (N) => U): Unit
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  21. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  22. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  23. def map[B](f: (N) => B): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  24. def max(implicit ord: Ordering[N]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  25. def maxBy[B](f: (N) => B)(implicit cmp: Ordering[B]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  26. def min(implicit ord: Ordering[N]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  27. def minBy[B](f: (N) => B)(implicit cmp: Ordering[B]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  28. def mkString: String
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  29. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  32. def product(implicit num: Numeric[N]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  33. def reduce(f: (N, N) => N): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  34. def reduceLeft(f: (N, N) => N): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  35. def reduceLeftOption(f: (N, N) => N): Option[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  36. def reduceOption(f: (N, N) => N): Option[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  37. def reduceRight(f: (N, N) => N): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  38. def reduceRightOption(f: (N, N) => N): Option[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  39. final def repr: Iterable[N]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  40. def sameElements[B >: A](that: scala.collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  41. def seq: EdgeLike.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  42. def size: Int
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  43. def sum(implicit num: Numeric[N]): N
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  44. def to[C1](factory: Factory[N, C1]): C1
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  45. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  46. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  47. def toIndexedSeq: IndexedSeq[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  48. final def toIterable: Iterable[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  49. def toIterator: Iterator[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  50. final def toIterator: Iterator[N]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  51. def toList: List[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  52. def toMap[K, V](implicit ev: <:<[N, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  53. def toSeq: Seq[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  54. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  55. def toStream: Stream[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  56. final def toStream: Stream[N]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  57. final def toTraversable: Traversable[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  58. final def toTraversable: Traversable[N]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  59. def toVector: Vector[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  60. def view(from: Int, until: Int): View[N]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  61. def withFilter(f: (N) => Boolean): Iterator[N]
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toIterableOnceExtensionMethods[N] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (edgeLike: IterableOnceExtensionMethods[N]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  62. def [B](y: B): (EdgeLike[N], B)
    Implicit
    This member is added by an implicit conversion from EdgeLike[N] toArrowAssoc[EdgeLike[N]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Eq

Inherited from Iterable[N]

Inherited from IterableOps[N, Iterable, Iterable[N]]

Inherited from IterableOnceOps[N, Iterable, Iterable[N]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromEdgeLike[N] to IterableOnceExtensionMethods[N]

Inherited by implicit conversion ChainingOps fromEdgeLike[N] to ChainingOps[EdgeLike[N]]

Inherited by implicit conversion any2stringadd fromEdgeLike[N] to any2stringadd[EdgeLike[N]]

Inherited by implicit conversion StringFormat fromEdgeLike[N] to StringFormat[EdgeLike[N]]

Inherited by implicit conversion Ensuring fromEdgeLike[N] to Ensuring[EdgeLike[N]]

Inherited by implicit conversion ArrowAssoc fromEdgeLike[N] to ArrowAssoc[EdgeLike[N]]

Ungrouped