Packages

trait EdgeSet extends (GraphLike.this)#EdgeSet

Linear Supertypes
(GraphLike.this)#EdgeSet, Serializable, ExtSetMethods[(GraphLike.this)#EdgeT], FilterableSet[(GraphLike.this)#EdgeT], Set[(GraphLike.this)#EdgeT], Equals, SetOps[(GraphLike.this)#EdgeT, Set, Set[(GraphLike.this)#EdgeT]], ((GraphLike.this)#EdgeT) => Boolean, Iterable[(GraphLike.this)#EdgeT], IterableFactoryDefaults[(GraphLike.this)#EdgeT, [x]Set[x]], IterableOps[(GraphLike.this)#EdgeT, [_]Set[_], Set[(GraphLike.this)#EdgeT]], IterableOnceOps[(GraphLike.this)#EdgeT, [_]Set[_], Set[(GraphLike.this)#EdgeT]], scala.collection.IterableOnce[(GraphLike.this)#EdgeT], AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EdgeSet
  2. EdgeSet
  3. Serializable
  4. ExtSetMethods
  5. FilterableSet
  6. Set
  7. Equals
  8. SetOps
  9. Function1
  10. Iterable
  11. IterableFactoryDefaults
  12. IterableOps
  13. IterableOnceOps
  14. IterableOnce
  15. AnyRef
  16. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by EdgeAssoc
  3. by predicateToNodePredicate
  4. by TraversableEnrichments
  5. by anyToNode
  6. by ChainingOps
  7. by any2stringadd
  8. by StringFormat
  9. by Ensuring
  10. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def contains(node: (GraphLike.this)#NodeT): Boolean
    Definition Classes
    EdgeSet
  2. abstract def contains(elem: (GraphLike.this)#EdgeT): Boolean
    Definition Classes
    SetOps
  3. abstract def find(outerEdge: E[N]): Option[(GraphLike.this)#EdgeT]

    Finds the inner edge corresponding to outerEdge.

    Finds the inner edge corresponding to outerEdge.

    returns

    the inner node wrapped by Some if found, otherwise None.

    Definition Classes
    EdgeSet
  4. abstract def hasAnyHyperEdge: Boolean
  5. abstract def hasAnyMultiEdge: Boolean
  6. abstract def hasMixedEdges: Boolean
  7. abstract def hasOnlyDiEdges: Boolean
  8. abstract def hasOnlyUnDiEdges: Boolean
  9. abstract def initialize(edges: Iterable[E[N]]): Unit

    This method is called by the primary constructor.

    This method is called by the primary constructor. It must be defined by the trait responsible for the implementation of the graph representation.

    edges

    The outer edges that the edge set of this graph is to be populated with. Nodes being the end of any of these edges will be added to the node set.

    Attributes
    protected[collection]
    Definition Classes
    EdgeSet
  10. abstract def iterator: Iterator[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnce

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def &(that: Set[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: scala.collection.IterableOnce[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: (GraphLike.this)#EdgeT](suffix: scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. def ->[B](y: B): ((GraphLike.this)#EdgeSet, B)
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toArrowAssoc[(GraphLike.this)#EdgeSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  12. def andThen[A](g: (Boolean) => A): ((GraphLike.this)#EdgeT) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  13. final def apply(elem: (GraphLike.this)#EdgeT): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def asSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: (GraphLike.this)#EdgeOrdering = defaultEdgeOrdering): String

    Sorts all edges according to ord and concatenates them using separator.

    Sorts all edges according to ord and concatenates them using separator.

    separator

    to separate edges by.

    ord

    custom ordering.

    returns

    sorted and concatenated string representation of this edge set.

    Definition Classes
    EdgeSet
  16. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  17. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  18. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  19. final def coll: EdgeSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  20. def collect[B](pf: PartialFunction[(GraphLike.this)#EdgeT, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  21. def collectFirst[B](pf: PartialFunction[(GraphLike.this)#EdgeT, B]): Option[B]
    Definition Classes
    IterableOnceOps
  22. def compose[A](g: (A) => (GraphLike.this)#EdgeT): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  23. def concat(that: scala.collection.IterableOnce[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
  24. def concat[B >: (GraphLike.this)#EdgeT](suffix: scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  25. def copyToArray[B >: (GraphLike.this)#EdgeT](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  26. def copyToArray[B >: (GraphLike.this)#EdgeT](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  27. def copyToArray[B >: (GraphLike.this)#EdgeT](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  28. def corresponds[B](that: scala.collection.IterableOnce[B])(p: ((GraphLike.this)#EdgeT, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  29. def count(p: ((GraphLike.this)#EdgeT) => Boolean): Int
    Definition Classes
    IterableOnceOps
  30. def diff(that: AnySet[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    EdgeSet → SetOps
  31. final def draw(random: Random): (GraphLike.this)#EdgeT

    Returns a random element of the set if it is nonEmpty otherwise throws IllegalArgumentException.

    Returns a random element of the set if it is nonEmpty otherwise throws IllegalArgumentException. Note that currently a near- but no true-uniform distribution is granted to allow for O(1) implementation.

    random

    a random generator; it is essential that random be instantiated by the caller just once for any sequence of calls

    Definition Classes
    EdgeSetExtSetMethods
  32. def drop(n: Int): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def dropRight(n: Int): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  34. def dropWhile(p: ((GraphLike.this)#EdgeT) => Boolean): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def empty: Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  36. def ensuring(cond: ((GraphLike.this)#EdgeSet) => Boolean, msg: => Any): (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEnsuring[(GraphLike.this)#EdgeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: ((GraphLike.this)#EdgeSet) => Boolean): (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEnsuring[(GraphLike.this)#EdgeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: Boolean, msg: => Any): (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEnsuring[(GraphLike.this)#EdgeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def ensuring(cond: Boolean): (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEnsuring[(GraphLike.this)#EdgeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  42. def exists(p: ((GraphLike.this)#EdgeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def filter(pred: ((GraphLike.this)#EdgeT) => Boolean): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def filterNot(pred: ((GraphLike.this)#EdgeT) => Boolean): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  45. def find(p: ((GraphLike.this)#EdgeT) => Boolean): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  46. final def findElem[B](other: B, correspond: ((GraphLike.this)#EdgeT, B) => Boolean): (GraphLike.this)#EdgeT

    Finds an entry in the collection based on toMatch's hashCode and a correspondence function but not on the argument type.

    Finds an entry in the collection based on toMatch's hashCode and a correspondence function but not on the argument type.

    correspond

    function returning whether a given entry corresponds to other

    returns

    the entry corresponding to toMatch or null if not contained

    Definition Classes
    EdgeSetExtSetMethods
  47. def findElem(elem: (GraphLike.this)#EdgeT): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    ExtSetMethods
  48. def flatMap[B](f: ((GraphLike.this)#EdgeT) => scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def flatten[B](implicit asIterable: ((GraphLike.this)#EdgeT) => scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def fold[A1 >: (GraphLike.this)#EdgeT](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  51. def foldLeft[B](z: B)(op: (B, (GraphLike.this)#EdgeT) => B): B
    Definition Classes
    IterableOnceOps
  52. def foldRight[B](z: B)(op: ((GraphLike.this)#EdgeT, B) => B): B
    Definition Classes
    IterableOnceOps
  53. def forall(p: ((GraphLike.this)#EdgeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  54. def foreach[U](f: ((GraphLike.this)#EdgeT) => U): Unit
    Definition Classes
    IterableOnceOps
  55. def fromSpecific(coll: scala.collection.IterableOnce[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  56. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  57. def groupBy[K](f: ((GraphLike.this)#EdgeT) => K): Map[K, Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  58. def groupMap[K, B](key: ((GraphLike.this)#EdgeT) => K)(f: ((GraphLike.this)#EdgeT) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  59. def groupMapReduce[K, B](key: ((GraphLike.this)#EdgeT) => K)(f: ((GraphLike.this)#EdgeT) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  60. def grouped(size: Int): Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  61. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  62. def head: (GraphLike.this)#EdgeT
    Definition Classes
    IterableOps
  63. def headOption: Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  64. def init: Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  65. def inits: Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  66. def intersect(that: Set[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
  67. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  68. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  69. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  70. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  71. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  72. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  73. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  74. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  75. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Iterable → IterableOps
  76. def knownSize: Int
    Definition Classes
    IterableOnce
  77. def last: (GraphLike.this)#EdgeT
    Definition Classes
    IterableOps
  78. def lastOption: Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  79. def lazyZip[B](that: Iterable[B]): LazyZip2[(GraphLike.this)#EdgeT, B, EdgeSet.this.type]
    Definition Classes
    Iterable
  80. def map[B](f: ((GraphLike.this)#EdgeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  81. def max[B >: (GraphLike.this)#EdgeT](implicit ord: Ordering[B]): (GraphLike.this)#EdgeT
    Definition Classes
    IterableOnceOps
  82. def maxArity: Int

    The maximum arity of all edges in this edge set.

    The maximum arity of all edges in this edge set.

    Definition Classes
    EdgeSet
  83. def maxBy[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#EdgeT
    Definition Classes
    IterableOnceOps
  84. def maxByOption[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  85. def maxOption[B >: (GraphLike.this)#EdgeT](implicit ord: Ordering[B]): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  86. def min[B >: (GraphLike.this)#EdgeT](implicit ord: Ordering[B]): (GraphLike.this)#EdgeT
    Definition Classes
    IterableOnceOps
  87. def minBy[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#EdgeT
    Definition Classes
    IterableOnceOps
  88. def minByOption[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  89. def minOption[B >: (GraphLike.this)#EdgeT](implicit ord: Ordering[B]): Option[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  90. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  91. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  92. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  93. val n1: (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEdgeAssoc[(GraphLike.this)#EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  94. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  95. def newSpecificBuilder: Builder[(GraphLike.this)#EdgeT, Set[(GraphLike.this)#EdgeT]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  96. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  97. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  98. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  99. def partition(p: ((GraphLike.this)#EdgeT) => Boolean): (Set[(GraphLike.this)#EdgeT], Set[(GraphLike.this)#EdgeT])
    Definition Classes
    IterableOps
  100. def partitionMap[A1, A2](f: ((GraphLike.this)#EdgeT) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  101. def pipe[B](f: ((GraphLike.this)#EdgeSet) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toChainingOps[(GraphLike.this)#EdgeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  102. def product[B >: (GraphLike.this)#EdgeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  103. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Product
  104. def reduce[B >: (GraphLike.this)#EdgeT](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  105. def reduceLeft[B >: (GraphLike.this)#EdgeT](op: (B, (GraphLike.this)#EdgeT) => B): B
    Definition Classes
    IterableOnceOps
  106. def reduceLeftOption[B >: (GraphLike.this)#EdgeT](op: (B, (GraphLike.this)#EdgeT) => B): Option[B]
    Definition Classes
    IterableOnceOps
  107. def reduceOption[B >: (GraphLike.this)#EdgeT](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  108. def reduceRight[B >: (GraphLike.this)#EdgeT](op: ((GraphLike.this)#EdgeT, B) => B): B
    Definition Classes
    IterableOnceOps
  109. def reduceRightOption[B >: (GraphLike.this)#EdgeT](op: ((GraphLike.this)#EdgeT, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  110. def reversed: Iterable[(GraphLike.this)#EdgeT]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  111. def scan[B >: (GraphLike.this)#EdgeT](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  112. def scanLeft[B](z: B)(op: (B, (GraphLike.this)#EdgeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def scanRight[B](z: B)(op: ((GraphLike.this)#EdgeT, B) => B): Set[B]
    Definition Classes
    IterableOps
  114. val self: (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toChainingOps[(GraphLike.this)#EdgeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  115. def size: Int
    Definition Classes
    IterableOnceOps
  116. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  117. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  118. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  119. def slice(from: Int, until: Int): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  120. def sliding(size: Int, step: Int): Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  121. def sliding(size: Int): Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  122. def span(p: ((GraphLike.this)#EdgeT) => Boolean): (Set[(GraphLike.this)#EdgeT], Set[(GraphLike.this)#EdgeT])
    Definition Classes
    IterableOps → IterableOnceOps
  123. def splitAt(n: Int): (Set[(GraphLike.this)#EdgeT], Set[(GraphLike.this)#EdgeT])
    Definition Classes
    IterableOps → IterableOnceOps
  124. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(GraphLike.this)#EdgeT, S]): S
    Definition Classes
    IterableOnce
  125. def stringPrefix: String
    Definition Classes
    EdgeSet → Set → Iterable
  126. def subsetOf(that: Set[(GraphLike.this)#EdgeT]): Boolean
    Definition Classes
    SetOps
  127. def subsets(): Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    SetOps
  128. def subsets(len: Int): Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    SetOps
  129. def sum[B >: (GraphLike.this)#EdgeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  130. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  131. val t: Set[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toTraversableEnrichments[(GraphLike.this)#EdgeT, Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  132. def tail: Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  133. def tails: Iterator[Set[(GraphLike.this)#EdgeT]]
    Definition Classes
    IterableOps
  134. def take(n: Int): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  135. def takeRight(n: Int): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  136. def takeWhile(p: ((GraphLike.this)#EdgeT) => Boolean): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  137. def tap[U](f: ((GraphLike.this)#EdgeSet) => U): (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toChainingOps[(GraphLike.this)#EdgeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  138. def tapEach[U](f: ((GraphLike.this)#EdgeT) => U): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def to[C1](factory: Factory[(GraphLike.this)#EdgeT, C1]): C1
    Definition Classes
    IterableOnceOps
  140. def toArray[B >: (GraphLike.this)#EdgeT](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  141. final def toBuffer[B >: (GraphLike.this)#EdgeT]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  142. def toIndexedSeq: IndexedSeq[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  143. def toList: List[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  144. def toMap[K, V](implicit ev: <:<[(GraphLike.this)#EdgeT, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  145. def toOuter: Set[E[N]]

    Converts this edge set to a set of outer edges.

    Converts this edge set to a set of outer edges.

    Definition Classes
    EdgeSet
  146. def toOuterNodes[E[+X] <: EdgeLike[X]]: Seq[InParam[(GraphLike.this)#EdgeT, E]]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toTraversableEnrichments[(GraphLike.this)#EdgeT, Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  147. def toSeq: Seq[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  148. def toSet[B >: (GraphLike.this)#EdgeT]: Set[B]
    Definition Classes
    IterableOnceOps
  149. def toSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: (GraphLike.this)#EdgeOrdering = defaultEdgeOrdering): String

    Sorts all edges according to ord, concatenates them using separator and prefixes and parenthesizes the result with stringPrefix.

    Sorts all edges according to ord, concatenates them using separator and prefixes and parenthesizes the result with stringPrefix.

    separator

    to separate edges by.

    ord

    custom ordering.

    returns

    sorted, concatenated and prefixed string representation of this edge set.

    Definition Classes
    EdgeSet
  150. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  151. def toVector: Vector[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
  152. def transpose[B](implicit asIterable: ((GraphLike.this)#EdgeT) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  153. final def union(that: Set[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  154. def unzip[A1, A2](implicit asPair: ((GraphLike.this)#EdgeT) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  155. def unzip3[A1, A2, A3](implicit asTriple: ((GraphLike.this)#EdgeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  156. val value: (GraphLike.this)#EdgeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  157. def view: View[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
  158. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  159. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  160. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  161. def withFilter(p: ((GraphLike.this)#EdgeT) => Boolean): WithFilter[(GraphLike.this)#EdgeT, [_]Set[_]]
    Definition Classes
    IterableOps
  162. def withSetFilter(p: ((GraphLike.this)#EdgeT) => Boolean): Set[(GraphLike.this)#EdgeT] with FilterableSet[(GraphLike.this)#EdgeT]
    Definition Classes
    FilterableSet
  163. def zip[B](that: scala.collection.IterableOnce[B]): Set[((GraphLike.this)#EdgeT, B)]
    Definition Classes
    IterableOps
  164. def zipAll[A1 >: (GraphLike.this)#EdgeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  165. def zipWithIndex: Set[((GraphLike.this)#EdgeT, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  166. final def |(that: Set[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  167. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEdgeAssoc[(GraphLike.this)#EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  168. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toEdgeAssoc[(GraphLike.this)#EdgeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toany2stringadd[(GraphLike.this)#EdgeSet] performed by method any2stringadd in scala.Predef.
    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:
    (edgeSet: any2stringadd[(GraphLike.this)#EdgeSet]).+(other)
    Definition Classes
    any2stringadd
  2. def andThen[A](g: (Boolean) => A): (Param[(GraphLike.this)#EdgeT, EI]) => A
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet to(Param[(GraphLike.this)#EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: (Param[(GraphLike.this)#EdgeT, EI]) => Boolean).andThen(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def apply(v1: Param[(GraphLike.this)#EdgeT, EI]): Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet to(Param[(GraphLike.this)#EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: (Param[(GraphLike.this)#EdgeT, EI]) => Boolean).apply(v1)
    Definition Classes
    Function1
  4. def compose[A](g: (A) => Param[(GraphLike.this)#EdgeT, EI]): (A) => Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet to(Param[(GraphLike.this)#EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: (Param[(GraphLike.this)#EdgeT, EI]) => Boolean).compose(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: OuterNode[(GraphLike.this)#EdgeSet]).stringPrefix
    Definition Classes
    NodeParam
  6. def toString(): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet to(Param[(GraphLike.this)#EdgeT, EI]) => Boolean performed by method predicateToNodePredicate in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: (Param[(GraphLike.this)#EdgeT, EI]) => Boolean).toString()
    Definition Classes
    Function1 → AnyRef → Any
  7. def toString(): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toOuterNode[(GraphLike.this)#EdgeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (edgeSet: OuterNode[(GraphLike.this)#EdgeSet]).toString()
    Definition Classes
    NodeParam → AnyRef → Any

Deprecated Value Members

  1. def +(elem1: (GraphLike.this)#EdgeT, elem2: (GraphLike.this)#EdgeT, elems: (GraphLike.this)#EdgeT*): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def +(elem: (GraphLike.this)#EdgeT): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.union

  3. def ++:[B >: (GraphLike.this)#EdgeT](that: scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  4. def -(elem1: (GraphLike.this)#EdgeT, elem2: (GraphLike.this)#EdgeT, elems: (GraphLike.this)#EdgeT*): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use &- with an explicit collection argument instead of - with varargs

  5. def -(elem: (GraphLike.this)#EdgeT): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.diff

  6. def --(that: scala.collection.IterableOnce[(GraphLike.this)#EdgeT]): Set[(GraphLike.this)#EdgeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  7. def /:[B](z: B)(op: (B, (GraphLike.this)#EdgeT) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  8. final def /:[B](z: B)(op: (B, (GraphLike.this)#EdgeT) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  9. def :\[B](z: B)(op: ((GraphLike.this)#EdgeT, B) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  10. final def :\[B](z: B)(op: ((GraphLike.this)#EdgeT, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. def aggregate[B](z: => B)(seqop: (B, (GraphLike.this)#EdgeT) => 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.

  12. def collectFirst[B](f: PartialFunction[(GraphLike.this)#EdgeT, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  13. def companion: IterableFactory[[_]Set[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  14. def copyToBuffer(dest: Buffer[(GraphLike.this)#EdgeT]): Unit
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  15. final def copyToBuffer[B >: (GraphLike.this)#EdgeT](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  16. def count(f: ((GraphLike.this)#EdgeT) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  17. def exists(f: ((GraphLike.this)#EdgeT) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  18. def filter(f: ((GraphLike.this)#EdgeT) => Boolean): Iterator[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  20. def find(p: ((GraphLike.this)#EdgeT) => Boolean): Option[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  21. def flatMap[B](f: ((GraphLike.this)#EdgeT) => scala.collection.IterableOnce[B]): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  22. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  23. def foldLeft[B](z: B)(op: (B, (GraphLike.this)#EdgeT) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  24. def foldRight[B](z: B)(op: ((GraphLike.this)#EdgeT, B) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  25. def forall(f: ((GraphLike.this)#EdgeT) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  26. def foreach[U](f: ((GraphLike.this)#EdgeT) => U): Unit
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  27. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toStringFormat[(GraphLike.this)#EdgeSet] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  28. 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)

  29. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  30. def map[B](f: ((GraphLike.this)#EdgeT) => B): scala.collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  31. def max(implicit ord: Ordering[(GraphLike.this)#EdgeT]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  32. def maxBy[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  33. def min(implicit ord: Ordering[(GraphLike.this)#EdgeT]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  34. def minBy[B](f: ((GraphLike.this)#EdgeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  35. def mkString: String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  36. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  37. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  38. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  39. def product(implicit num: Numeric[(GraphLike.this)#EdgeT]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  40. def reduce(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  41. def reduceLeft(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  42. def reduceLeftOption(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): Option[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  43. def reduceOption(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): Option[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  44. def reduceRight(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  45. def reduceRightOption(f: ((GraphLike.this)#EdgeT, (GraphLike.this)#EdgeT) => (GraphLike.this)#EdgeT): Option[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  46. final def repr: Set[(GraphLike.this)#EdgeT]
    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

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

    (Since version 2.13.0) Use .iterator.sameElements instead

  48. def seq: EdgeSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  49. def size: Int
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  50. def sum(implicit num: Numeric[(GraphLike.this)#EdgeT]): (GraphLike.this)#EdgeT
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  51. def to[C1](factory: Factory[(GraphLike.this)#EdgeT, C1]): C1
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  52. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  53. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  54. def toEdgeInSet: Set[E[N]]
    Definition Classes
    EdgeSet
    Annotations
    @deprecated
    Deprecated

    (Since version 1.8.0) Use toOuter instead

  55. def toIndexedSeq: IndexedSeq[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  56. final def toIterable: Iterable[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  57. final def toIterable: EdgeSet.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  58. def toIterator: Iterator[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  59. final def toIterator: Iterator[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  60. def toList: List[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  61. def toMap[K, V](implicit ev: <:<[(GraphLike.this)#EdgeT, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  62. def toSeq: Seq[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  63. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  64. def toStream: Stream[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  65. final def toStream: Stream[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  66. final def toTraversable: Traversable[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  67. final def toTraversable: Traversable[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  68. def toVector: Vector[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  69. def view(from: Int, until: Int): View[(GraphLike.this)#EdgeT]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  70. def withFilter(f: ((GraphLike.this)#EdgeT) => Boolean): Iterator[(GraphLike.this)#EdgeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toIterableOnceExtensionMethods[(GraphLike.this)#EdgeT] 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:
    (edgeSet: IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  71. def [B](y: B): ((GraphLike.this)#EdgeSet, B)
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#EdgeSet toArrowAssoc[(GraphLike.this)#EdgeSet] 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 (GraphLike.this)#EdgeSet

Inherited from Serializable

Inherited from ExtSetMethods[(GraphLike.this)#EdgeT]

Inherited from FilterableSet[(GraphLike.this)#EdgeT]

Inherited from Set[(GraphLike.this)#EdgeT]

Inherited from Equals

Inherited from SetOps[(GraphLike.this)#EdgeT, Set, Set[(GraphLike.this)#EdgeT]]

Inherited from ((GraphLike.this)#EdgeT) => Boolean

Inherited from Iterable[(GraphLike.this)#EdgeT]

Inherited from IterableFactoryDefaults[(GraphLike.this)#EdgeT, [x]Set[x]]

Inherited from IterableOps[(GraphLike.this)#EdgeT, [_]Set[_], Set[(GraphLike.this)#EdgeT]]

Inherited from IterableOnceOps[(GraphLike.this)#EdgeT, [_]Set[_], Set[(GraphLike.this)#EdgeT]]

Inherited from scala.collection.IterableOnce[(GraphLike.this)#EdgeT]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods from(GraphLike.this)#EdgeSet to IterableOnceExtensionMethods[(GraphLike.this)#EdgeT]

Inherited by implicit conversion EdgeAssoc from(GraphLike.this)#EdgeSet to EdgeAssoc[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion predicateToNodePredicate from(GraphLike.this)#EdgeSet to (Param[(GraphLike.this)#EdgeT, EI]) => Boolean

Inherited by implicit conversion TraversableEnrichments from(GraphLike.this)#EdgeSet to TraversableEnrichments[(GraphLike.this)#EdgeT, Set]

Inherited by implicit conversion anyToNode from(GraphLike.this)#EdgeSet to OuterNode[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion ChainingOps from(GraphLike.this)#EdgeSet to ChainingOps[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion any2stringadd from(GraphLike.this)#EdgeSet to any2stringadd[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion StringFormat from(GraphLike.this)#EdgeSet to StringFormat[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion Ensuring from(GraphLike.this)#EdgeSet to Ensuring[(GraphLike.this)#EdgeSet]

Inherited by implicit conversion ArrowAssoc from(GraphLike.this)#EdgeSet to ArrowAssoc[(GraphLike.this)#EdgeSet]

Ungrouped