Packages

trait NodeSet extends (GraphLike.this)#NodeSet

Linear Supertypes
(GraphLike.this)#NodeSet, ExtSetMethods[(GraphLike.this)#NodeT], FilterableSet[(GraphLike.this)#NodeT], Set[(GraphLike.this)#NodeT], Equals, SetOps[(GraphLike.this)#NodeT, Set, Set[(GraphLike.this)#NodeT]], ((GraphLike.this)#NodeT) => Boolean, Iterable[(GraphLike.this)#NodeT], IterableFactoryDefaults[(GraphLike.this)#NodeT, [x]Set[x]], IterableOps[(GraphLike.this)#NodeT, [_]Set[_], Set[(GraphLike.this)#NodeT]], IterableOnceOps[(GraphLike.this)#NodeT, [_]Set[_], Set[(GraphLike.this)#NodeT]], scala.collection.IterableOnce[(GraphLike.this)#NodeT], AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeSet
  2. NodeSet
  3. ExtSetMethods
  4. FilterableSet
  5. Set
  6. Equals
  7. SetOps
  8. Function1
  9. Iterable
  10. IterableFactoryDefaults
  11. IterableOps
  12. IterableOnceOps
  13. IterableOnce
  14. AnyRef
  15. 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(elem: (GraphLike.this)#NodeT): Boolean
    Definition Classes
    SetOps
  2. abstract def copy: (GraphLike.this)#NodeSetT
    Attributes
    protected
  3. abstract def draw(random: Random): (GraphLike.this)#NodeT

    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
    NodeSetExtSetMethods
  4. abstract def find(outerNode: N): Option[(GraphLike.this)#NodeT]

    Finds the inner node corresponding to outerNode.

    Finds the inner node corresponding to outerNode.

    returns

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

    Definition Classes
    NodeSet
  5. abstract def findElem[B](toMatch: B, correspond: ((GraphLike.this)#NodeT, B) => Boolean): (GraphLike.this)#NodeT

    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.

    toMatch

    a value not necessarily of type A; the entry to be searched for must have the same hashCode and be equal to this argument

    correspond

    function returning whether a given entry corresponds to other

    returns

    the entry corresponding to toMatch or null if not contained

    Definition Classes
    ExtSetMethods
  6. abstract def get(outerNode: N): (GraphLike.this)#NodeT

    Finds the inner node corresponding to outerNode.

    Finds the inner node corresponding to outerNode.

    returns

    the inner node if found, otherwise NoSuchElementException is thrown.

    Definition Classes
    NodeSet
  7. abstract def initialize(nodes: Iterable[N], 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.

    nodes

    The isolated (and optionally any other) outer nodes that the node set of this graph is to be populated with.

    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
    NodeSet
  8. abstract def iterator: Iterator[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnce
  9. abstract def lookup(outerNode: N): (GraphLike.this)#NodeT

    Finds the inner node corresponding to outerNode.

    Finds the inner node corresponding to outerNode.

    returns

    the inner node if found, otherwise null.

    Definition Classes
    NodeSet
  10. abstract def minus(node: (GraphLike.this)#NodeT): Unit

    removes node from this node set leaving the edge set unchanged.

    removes node from this node set leaving the edge set unchanged.

    node

    the node to be removed from the node set.

    Attributes
    protected

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)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: scala.collection.IterableOnce[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: (GraphLike.this)#NodeT](suffix: scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def -(node: (GraphLike.this)#NodeT): (GraphLike.this)#NodeSetT
    Definition Classes
    NodeSet → SetOps
  8. def ->[B](y: B): ((GraphLike.this)#NodeSet, B)
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toArrowAssoc[(GraphLike.this)#NodeSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  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. def adjacencyListsToString: String
    Definition Classes
    NodeSet
  14. def andThen[A](g: (Boolean) => A): ((GraphLike.this)#NodeT) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  15. final def apply(elem: (GraphLike.this)#NodeT): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def asSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: (GraphLike.this)#NodeOrdering = defaultNodeOrdering): String

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

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

    separator

    to separate nodes by.

    ord

    custom ordering.

    returns

    sorted and concatenated string representation of this node set.

    Definition Classes
    NodeSet
  18. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  19. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  21. final def coll: NodeSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  22. def collect[B](pf: PartialFunction[(GraphLike.this)#NodeT, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def collectFirst[B](pf: PartialFunction[(GraphLike.this)#NodeT, B]): Option[B]
    Definition Classes
    IterableOnceOps
  24. def compose[A](g: (A) => (GraphLike.this)#NodeT): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  25. def concat(that: scala.collection.IterableOnce[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
  26. def concat[B >: (GraphLike.this)#NodeT](suffix: scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  27. def copyToArray[B >: (GraphLike.this)#NodeT](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  28. def copyToArray[B >: (GraphLike.this)#NodeT](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  29. def copyToArray[B >: (GraphLike.this)#NodeT](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  30. def corresponds[B](that: scala.collection.IterableOnce[B])(p: ((GraphLike.this)#NodeT, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  31. def count(p: ((GraphLike.this)#NodeT) => Boolean): Int
    Definition Classes
    IterableOnceOps
  32. def diff(that: AnySet[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    NodeSet → SetOps
  33. def drop(n: Int): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def dropRight(n: Int): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  35. def dropWhile(p: ((GraphLike.this)#NodeT) => Boolean): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def empty: Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  37. def ensuring(cond: ((GraphLike.this)#NodeSet) => Boolean, msg: => Any): (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEnsuring[(GraphLike.this)#NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: ((GraphLike.this)#NodeSet) => Boolean): (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEnsuring[(GraphLike.this)#NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def ensuring(cond: Boolean, msg: => Any): (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEnsuring[(GraphLike.this)#NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. def ensuring(cond: Boolean): (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEnsuring[(GraphLike.this)#NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  42. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  43. def exists(p: ((GraphLike.this)#NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  44. def filter(pred: ((GraphLike.this)#NodeT) => Boolean): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  45. def filterNot(pred: ((GraphLike.this)#NodeT) => Boolean): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def find(p: ((GraphLike.this)#NodeT) => Boolean): Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  47. def findElem(elem: (GraphLike.this)#NodeT): Option[(GraphLike.this)#NodeT]
    Definition Classes
    ExtSetMethods
  48. def flatMap[B](f: ((GraphLike.this)#NodeT) => scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def flatten[B](implicit asIterable: ((GraphLike.this)#NodeT) => scala.collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def fold[A1 >: (GraphLike.this)#NodeT](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  51. def foldLeft[B](z: B)(op: (B, (GraphLike.this)#NodeT) => B): B
    Definition Classes
    IterableOnceOps
  52. def foldRight[B](z: B)(op: ((GraphLike.this)#NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  53. def forall(p: ((GraphLike.this)#NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  54. def foreach[U](f: ((GraphLike.this)#NodeT) => U): Unit
    Definition Classes
    IterableOnceOps
  55. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toStringFormat[(GraphLike.this)#NodeSet] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  56. def fromSpecific(coll: scala.collection.IterableOnce[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  57. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  58. def groupBy[K](f: ((GraphLike.this)#NodeT) => K): Map[K, Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  59. def groupMap[K, B](key: ((GraphLike.this)#NodeT) => K)(f: ((GraphLike.this)#NodeT) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  60. def groupMapReduce[K, B](key: ((GraphLike.this)#NodeT) => K)(f: ((GraphLike.this)#NodeT) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  61. def grouped(size: Int): Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  62. def handleNotGentlyRemovable: Boolean
    Attributes
    protected
  63. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  64. def head: (GraphLike.this)#NodeT
    Definition Classes
    IterableOps
  65. def headOption: Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  66. def init: Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  67. def inits: Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  68. def intersect(that: Set[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
  69. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  70. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  71. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  72. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParamParam
  73. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  74. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  75. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  76. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  77. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Iterable → IterableOps
  78. def knownSize: Int
    Definition Classes
    IterableOnce
  79. def last: (GraphLike.this)#NodeT
    Definition Classes
    IterableOps
  80. def lastOption: Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  81. def lazyZip[B](that: Iterable[B]): LazyZip2[(GraphLike.this)#NodeT, B, NodeSet.this.type]
    Definition Classes
    Iterable
  82. def map[B](f: ((GraphLike.this)#NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  83. def max[B >: (GraphLike.this)#NodeT](implicit ord: Ordering[B]): (GraphLike.this)#NodeT
    Definition Classes
    IterableOnceOps
  84. def maxBy[B](f: ((GraphLike.this)#NodeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#NodeT
    Definition Classes
    IterableOnceOps
  85. def maxByOption[B](f: ((GraphLike.this)#NodeT) => B)(implicit cmp: Ordering[B]): Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  86. def maxOption[B >: (GraphLike.this)#NodeT](implicit ord: Ordering[B]): Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  87. def min[B >: (GraphLike.this)#NodeT](implicit ord: Ordering[B]): (GraphLike.this)#NodeT
    Definition Classes
    IterableOnceOps
  88. def minBy[B](f: ((GraphLike.this)#NodeT) => B)(implicit cmp: Ordering[B]): (GraphLike.this)#NodeT
    Definition Classes
    IterableOnceOps
  89. def minByOption[B](f: ((GraphLike.this)#NodeT) => B)(implicit cmp: Ordering[B]): Option[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  90. def minOption[B >: (GraphLike.this)#NodeT](implicit ord: Ordering[B]): Option[(GraphLike.this)#NodeT]
    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. val n1: (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEdgeAssoc[(GraphLike.this)#NodeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  95. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  96. def newSpecificBuilder: Builder[(GraphLike.this)#NodeT, Set[(GraphLike.this)#NodeT]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  97. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  98. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  99. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  100. def partition(p: ((GraphLike.this)#NodeT) => Boolean): (Set[(GraphLike.this)#NodeT], Set[(GraphLike.this)#NodeT])
    Definition Classes
    IterableOps
  101. def partitionMap[A1, A2](f: ((GraphLike.this)#NodeT) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  102. def pipe[B](f: ((GraphLike.this)#NodeSet) => B): B
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toChainingOps[(GraphLike.this)#NodeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  103. def product[B >: (GraphLike.this)#NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  104. def productElementNames: Iterator[String]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Product
  105. def reduce[B >: (GraphLike.this)#NodeT](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  106. def reduceLeft[B >: (GraphLike.this)#NodeT](op: (B, (GraphLike.this)#NodeT) => B): B
    Definition Classes
    IterableOnceOps
  107. def reduceLeftOption[B >: (GraphLike.this)#NodeT](op: (B, (GraphLike.this)#NodeT) => B): Option[B]
    Definition Classes
    IterableOnceOps
  108. def reduceOption[B >: (GraphLike.this)#NodeT](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  109. def reduceRight[B >: (GraphLike.this)#NodeT](op: ((GraphLike.this)#NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  110. def reduceRightOption[B >: (GraphLike.this)#NodeT](op: ((GraphLike.this)#NodeT, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  111. def reversed: Iterable[(GraphLike.this)#NodeT]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  112. def scan[B >: (GraphLike.this)#NodeT](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  113. def scanLeft[B](z: B)(op: (B, (GraphLike.this)#NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  114. def scanRight[B](z: B)(op: ((GraphLike.this)#NodeT, B) => B): Set[B]
    Definition Classes
    IterableOps
  115. val self: (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toChainingOps[(GraphLike.this)#NodeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  116. def size: Int
    Definition Classes
    IterableOnceOps
  117. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  118. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  119. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  120. def slice(from: Int, until: Int): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  121. def sliding(size: Int, step: Int): Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  122. def sliding(size: Int): Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  123. def span(p: ((GraphLike.this)#NodeT) => Boolean): (Set[(GraphLike.this)#NodeT], Set[(GraphLike.this)#NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  124. def splitAt(n: Int): (Set[(GraphLike.this)#NodeT], Set[(GraphLike.this)#NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  125. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(GraphLike.this)#NodeT, S]): S
    Definition Classes
    IterableOnce
  126. def stringPrefix: String
    Definition Classes
    NodeSet → Set → Iterable
  127. def subsetOf(that: Set[(GraphLike.this)#NodeT]): Boolean
    Definition Classes
    SetOps
  128. def subsets(): Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    SetOps
  129. def subsets(len: Int): Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    SetOps
  130. final def subtract(node: (GraphLike.this)#NodeT, rippleDelete: Boolean, minusNode: ((GraphLike.this)#NodeT) => Unit, minusEdges: ((GraphLike.this)#NodeT) => Unit): Boolean

    removes node either rippling or gently.

    removes node either rippling or gently.

    node

    the node to be subtracted

    rippleDelete

    if true, node will be deleted with its incident edges; otherwise node will be only deleted if it has no incident edges or all its incident edges are hooks.

    minusNode

    implementation of node removal without considering incident edges.

    minusEdges

    implementation of removal of all incident edges.

    returns

    true if node has been removed.

    Attributes
    protected[collection]
  131. def sum[B >: (GraphLike.this)#NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  132. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  133. val t: Set[(GraphLike.this)#NodeT]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toTraversableEnrichments[(GraphLike.this)#NodeT, Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  134. def tail: Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  135. def tails: Iterator[Set[(GraphLike.this)#NodeT]]
    Definition Classes
    IterableOps
  136. def take(n: Int): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  137. def takeRight(n: Int): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  138. def takeWhile(p: ((GraphLike.this)#NodeT) => Boolean): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def tap[U](f: ((GraphLike.this)#NodeSet) => U): (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toChainingOps[(GraphLike.this)#NodeSet] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  140. def tapEach[U](f: ((GraphLike.this)#NodeT) => U): Set[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  141. def to[C1](factory: Factory[(GraphLike.this)#NodeT, C1]): C1
    Definition Classes
    IterableOnceOps
  142. def toArray[B >: (GraphLike.this)#NodeT](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  143. final def toBuffer[B >: (GraphLike.this)#NodeT]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. def toIndexedSeq: IndexedSeq[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  145. final def toIterable: NodeSet.this.type
    Definition Classes
    Iterable → IterableOps
  146. def toList: List[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  147. def toMap[K, V](implicit ev: <:<[(GraphLike.this)#NodeT, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  148. def toOuter: Set[N]

    Converts this node set to a set of outer nodes.

    Converts this node set to a set of outer nodes.

    Definition Classes
    NodeSet
  149. def toOuterNodes[E[+X] <: EdgeLike[X]]: Seq[InParam[(GraphLike.this)#NodeT, E]]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toTraversableEnrichments[(GraphLike.this)#NodeT, Set] performed by method TraversableEnrichments in scalax.collection.GraphPredef.
    Definition Classes
    TraversableEnrichments
  150. def toSeq: Seq[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  151. def toSet[B >: (GraphLike.this)#NodeT]: Set[B]
    Definition Classes
    IterableOnceOps
  152. def toSortedString(separator: String = GraphBase.defaultSeparator)(implicit ord: (GraphLike.this)#NodeOrdering = defaultNodeOrdering): String

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

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

    separator

    to separate nodes by.

    ord

    custom ordering.

    returns

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

    Definition Classes
    NodeSet
  153. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  154. def toVector: Vector[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOnceOps
  155. def transpose[B](implicit asIterable: ((GraphLike.this)#NodeT) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  156. final def union(that: Set[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  157. def unzip[A1, A2](implicit asPair: ((GraphLike.this)#NodeT) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  158. def unzip3[A1, A2, A3](implicit asTriple: ((GraphLike.this)#NodeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  159. val value: (GraphLike.this)#NodeSet
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNodeNodeParam
  160. def view: View[(GraphLike.this)#NodeT]
    Definition Classes
    IterableOps
  161. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  162. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  163. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  164. def withFilter(p: ((GraphLike.this)#NodeT) => Boolean): WithFilter[(GraphLike.this)#NodeT, [_]Set[_]]
    Definition Classes
    IterableOps
  165. def withSetFilter(p: ((GraphLike.this)#NodeT) => Boolean): Set[(GraphLike.this)#NodeT] with FilterableSet[(GraphLike.this)#NodeT]
    Definition Classes
    FilterableSet
  166. def zip[B](that: scala.collection.IterableOnce[B]): Set[((GraphLike.this)#NodeT, B)]
    Definition Classes
    IterableOps
  167. def zipAll[A1 >: (GraphLike.this)#NodeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  168. def zipWithIndex: Set[((GraphLike.this)#NodeT, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  169. final def |(that: Set[(GraphLike.this)#NodeT]): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  170. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEdgeAssoc[(GraphLike.this)#NodeSet] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  171. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toEdgeAssoc[(GraphLike.this)#NodeSet] 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)#NodeSet toany2stringadd[(GraphLike.this)#NodeSet] 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:
    (nodeSet: any2stringadd[(GraphLike.this)#NodeSet]).+(other)
    Definition Classes
    any2stringadd
  2. def andThen[A](g: (Boolean) => A): (Param[(GraphLike.this)#NodeT, EI]) => A
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet to(Param[(GraphLike.this)#NodeT, 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:
    (nodeSet: (Param[(GraphLike.this)#NodeT, EI]) => Boolean).andThen(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def apply(v1: Param[(GraphLike.this)#NodeT, EI]): Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet to(Param[(GraphLike.this)#NodeT, 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:
    (nodeSet: (Param[(GraphLike.this)#NodeT, EI]) => Boolean).apply(v1)
    Definition Classes
    Function1
  4. def compose[A](g: (A) => Param[(GraphLike.this)#NodeT, EI]): (A) => Boolean
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet to(Param[(GraphLike.this)#NodeT, 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:
    (nodeSet: (Param[(GraphLike.this)#NodeT, 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)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] 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:
    (nodeSet: OuterNode[(GraphLike.this)#NodeSet]).stringPrefix
    Definition Classes
    NodeParam
  6. def toString(): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet to(Param[(GraphLike.this)#NodeT, 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:
    (nodeSet: (Param[(GraphLike.this)#NodeT, EI]) => Boolean).toString()
    Definition Classes
    Function1 → AnyRef → Any
  7. def toString(): String
    Implicit
    This member is added by an implicit conversion from (GraphLike.this)#NodeSet toOuterNode[(GraphLike.this)#NodeSet] 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:
    (nodeSet: OuterNode[(GraphLike.this)#NodeSet]).toString()
    Definition Classes
    NodeParam → AnyRef → Any

Deprecated Value Members

  1. def +(elem1: (GraphLike.this)#NodeT, elem2: (GraphLike.this)#NodeT, elems: (GraphLike.this)#NodeT*): Set[(GraphLike.this)#NodeT]
    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)#NodeT): Set[(GraphLike.this)#NodeT]
    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)#NodeT](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)#NodeT, elem2: (GraphLike.this)#NodeT, elems: (GraphLike.this)#NodeT*): Set[(GraphLike.this)#NodeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Consider requiring an immutable Set

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

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

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.find instead

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

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

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

    (Since version 2.13.0) Use .iterator.fold instead

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

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

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.sameElements instead

  46. def seq: NodeSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

  58. def toNodeInSet: Set[N]
    Definition Classes
    NodeSet
    Annotations
    @deprecated
    Deprecated

    (Since version 1.8.0) Use toOuter instead

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

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

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

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

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

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

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

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

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

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

Inherited from Equals

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

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

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

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

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

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

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

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

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

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

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

Ungrouped