Packages

trait NodeSet extends AnySet[NodeT] with ExtSetMethods[NodeT]

Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeSet
  2. ExtSetMethods
  3. FilterableSet
  4. Set
  5. Equals
  6. SetOps
  7. Function1
  8. Iterable
  9. IterableFactoryDefaults
  10. IterableOps
  11. IterableOnceOps
  12. IterableOnce
  13. AnyRef
  14. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def contains(elem: NodeT): Boolean
    Definition Classes
    SetOps
  2. abstract def draw(random: Random): 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
  3. abstract def find(outerNode: N): Option[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.

  4. abstract def findElem[B](toMatch: B, correspond: (NodeT, B) => Boolean): 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
  5. abstract def get(outerNode: N): 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.

  6. abstract def initialize(nodes: Iterable[N], edges: Iterable[E]): 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]
  7. abstract def iterator: Iterator[NodeT]
    Definition Classes
    IterableOnce
  8. abstract def lookup(outerNode: N): NodeT

    Finds the inner node corresponding to outerNode.

    Finds the inner node corresponding to outerNode.

    returns

    the inner node if found, otherwise null.

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[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: IterableOnce[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: NodeT](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. def ->[B](y: B): (NodeSet, B)
    Implicit
    This member is added by an implicit conversion from NodeSet toArrowAssoc[NodeSet] 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): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  10. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  12. def adjacencyListsToString: String
  13. def andThen[A](g: (Boolean) => A): (NodeT) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  14. final def apply(elem: NodeT): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  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: NodeSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  20. def collect[B](pf: PartialFunction[NodeT, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  21. def collectFirst[B](pf: PartialFunction[NodeT, B]): Option[B]
    Definition Classes
    IterableOnceOps
  22. def compose[A](g: (A) => NodeT): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  23. def concat(that: IterableOnce[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
  24. def concat[B >: NodeT](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  25. def copyToArray[B >: NodeT](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  26. def copyToArray[B >: NodeT](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  27. def copyToArray[B >: NodeT](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  28. def corresponds[B](that: IterableOnce[B])(p: (NodeT, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  29. def count(p: (NodeT) => Boolean): Int
    Definition Classes
    IterableOnceOps
  30. def diff(that: AnySet[NodeT]): AnySet[NodeT]
    Definition Classes
    NodeSet → SetOps
  31. def drop(n: Int): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  32. def dropRight(n: Int): Set[NodeT]
    Definition Classes
    IterableOps
  33. def dropWhile(p: (NodeT) => Boolean): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def empty: Set[NodeT]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  35. def ensuring(cond: (NodeSet) => Boolean, msg: => Any): NodeSet
    Implicit
    This member is added by an implicit conversion from NodeSet toEnsuring[NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: (NodeSet) => Boolean): NodeSet
    Implicit
    This member is added by an implicit conversion from NodeSet toEnsuring[NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: Boolean, msg: => Any): NodeSet
    Implicit
    This member is added by an implicit conversion from NodeSet toEnsuring[NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: Boolean): NodeSet
    Implicit
    This member is added by an implicit conversion from NodeSet toEnsuring[NodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  41. def exists(p: (NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  42. def filter(pred: (NodeT) => Boolean): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  43. def filterNot(pred: (NodeT) => Boolean): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def find(p: (NodeT) => Boolean): Option[NodeT]
    Definition Classes
    IterableOnceOps
  45. def findElem(elem: NodeT): Option[NodeT]
    Definition Classes
    ExtSetMethods
  46. def flatMap[B](f: (NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  47. def flatten[B](implicit asIterable: (NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def fold[A1 >: NodeT](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  49. def foldLeft[B](z: B)(op: (B, NodeT) => B): B
    Definition Classes
    IterableOnceOps
  50. final def foldLeftOuter[B](z: B)(opNode: (B, N) => B): B

    Same as foldLeft except the second parameter of opNode.

    Same as foldLeft except the second parameter of opNode.

    opNode

    binary operator that is passed the cumulated value and an outer node.

  51. def foldRight[B](z: B)(op: (NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  52. def forall(p: (NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  53. def foreach[U](f: (NodeT) => U): Unit
    Definition Classes
    IterableOnceOps
  54. def fromSpecific(coll: IterableOnce[NodeT]): Set[NodeT]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  55. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  56. def groupBy[K](f: (NodeT) => K): Map[K, Set[NodeT]]
    Definition Classes
    IterableOps
  57. def groupMap[K, B](key: (NodeT) => K)(f: (NodeT) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  58. def groupMapReduce[K, B](key: (NodeT) => K)(f: (NodeT) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  59. def grouped(size: Int): Iterator[Set[NodeT]]
    Definition Classes
    IterableOps
  60. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  61. def head: NodeT
    Definition Classes
    IterableOps
  62. def headOption: Option[NodeT]
    Definition Classes
    IterableOps
  63. def init: Set[NodeT]
    Definition Classes
    IterableOps
  64. def inits: Iterator[Set[NodeT]]
    Definition Classes
    IterableOps
  65. def intersect(that: Set[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
  66. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  67. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  68. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  69. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Iterable → IterableOps
  70. def knownSize: Int
    Definition Classes
    IterableOnce
  71. def last: NodeT
    Definition Classes
    IterableOps
  72. def lastOption: Option[NodeT]
    Definition Classes
    IterableOps
  73. def lazyZip[B](that: Iterable[B]): LazyZip2[NodeT, B, NodeSet.this.type]
    Definition Classes
    Iterable
  74. def map[B](f: (NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  75. def max[B >: NodeT](implicit ord: Ordering[B]): NodeT
    Definition Classes
    IterableOnceOps
  76. def maxBy[B](f: (NodeT) => B)(implicit cmp: Ordering[B]): NodeT
    Definition Classes
    IterableOnceOps
  77. def maxByOption[B](f: (NodeT) => B)(implicit cmp: Ordering[B]): Option[NodeT]
    Definition Classes
    IterableOnceOps
  78. def maxOption[B >: NodeT](implicit ord: Ordering[B]): Option[NodeT]
    Definition Classes
    IterableOnceOps
  79. def min[B >: NodeT](implicit ord: Ordering[B]): NodeT
    Definition Classes
    IterableOnceOps
  80. def minBy[B](f: (NodeT) => B)(implicit cmp: Ordering[B]): NodeT
    Definition Classes
    IterableOnceOps
  81. def minByOption[B](f: (NodeT) => B)(implicit cmp: Ordering[B]): Option[NodeT]
    Definition Classes
    IterableOnceOps
  82. def minOption[B >: NodeT](implicit ord: Ordering[B]): Option[NodeT]
    Definition Classes
    IterableOnceOps
  83. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  84. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  85. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  86. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  87. def newSpecificBuilder: Builder[NodeT, Set[NodeT]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  88. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  89. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  90. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  91. final def outerIterable: Iterable[N]

    Iterable over this NodeSet mapped to outer nodes.

    Iterable over this NodeSet mapped to outer nodes.

    Annotations
    @inline()
  92. final def outerIterator: Iterator[N]

    Iterator over this NodeSet mapped to outer nodes.

    Iterator over this NodeSet mapped to outer nodes.

    Annotations
    @inline()
  93. def partition(p: (NodeT) => Boolean): (Set[NodeT], Set[NodeT])
    Definition Classes
    IterableOps
  94. def partitionMap[A1, A2](f: (NodeT) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  95. def product[B >: NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  96. def reduce[B >: NodeT](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  97. def reduceLeft[B >: NodeT](op: (B, NodeT) => B): B
    Definition Classes
    IterableOnceOps
  98. def reduceLeftOption[B >: NodeT](op: (B, NodeT) => B): Option[B]
    Definition Classes
    IterableOnceOps
  99. def reduceOption[B >: NodeT](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  100. def reduceRight[B >: NodeT](op: (NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  101. def reduceRightOption[B >: NodeT](op: (NodeT, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  102. def reversed: Iterable[NodeT]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  103. def scan[B >: NodeT](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  104. def scanLeft[B](z: B)(op: (B, NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  105. def scanRight[B](z: B)(op: (NodeT, B) => B): Set[B]
    Definition Classes
    IterableOps
  106. def size: Int
    Definition Classes
    IterableOnceOps
  107. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  108. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  109. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  110. def slice(from: Int, until: Int): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  111. def sliding(size: Int, step: Int): Iterator[Set[NodeT]]
    Definition Classes
    IterableOps
  112. def sliding(size: Int): Iterator[Set[NodeT]]
    Definition Classes
    IterableOps
  113. def span(p: (NodeT) => Boolean): (Set[NodeT], Set[NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  114. def splitAt(n: Int): (Set[NodeT], Set[NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  115. def stepper[S <: Stepper[_]](implicit shape: StepperShape[NodeT, S]): S
    Definition Classes
    IterableOnce
  116. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  117. def subsetOf(that: Set[NodeT]): Boolean
    Definition Classes
    SetOps
  118. def subsets(): Iterator[Set[NodeT]]
    Definition Classes
    SetOps
  119. def subsets(len: Int): Iterator[Set[NodeT]]
    Definition Classes
    SetOps
  120. def sum[B >: NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  121. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  122. def tail: Set[NodeT]
    Definition Classes
    IterableOps
  123. def tails: Iterator[Set[NodeT]]
    Definition Classes
    IterableOps
  124. def take(n: Int): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  125. def takeRight(n: Int): Set[NodeT]
    Definition Classes
    IterableOps
  126. def takeWhile(p: (NodeT) => Boolean): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  127. def tapEach[U](f: (NodeT) => U): Set[NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  128. def to[C1](factory: Factory[NodeT, C1]): C1
    Definition Classes
    IterableOnceOps
  129. def toArray[B >: NodeT](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  130. final def toBuffer[B >: NodeT]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  131. def toIndexedSeq: IndexedSeq[NodeT]
    Definition Classes
    IterableOnceOps
  132. def toList: List[NodeT]
    Definition Classes
    IterableOnceOps
  133. def toMap[K, V](implicit ev: <:<[NodeT, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  134. def toOuter: Set[N]

    Converts this node set to a set of outer nodes.

  135. def toSeq: Seq[NodeT]
    Definition Classes
    IterableOnceOps
  136. def toSet[B >: NodeT]: Set[B]
    Definition Classes
    IterableOnceOps
  137. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  138. def toVector: Vector[NodeT]
    Definition Classes
    IterableOnceOps
  139. def transpose[B](implicit asIterable: (NodeT) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  140. final def union(that: Set[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  141. def unzip[A1, A2](implicit asPair: (NodeT) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  142. def unzip3[A1, A2, A3](implicit asTriple: (NodeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  143. def view: View[NodeT]
    Definition Classes
    IterableOps
  144. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  145. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  146. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  147. def withFilter(p: (NodeT) => Boolean): WithFilter[NodeT, [_]Set[_]]
    Definition Classes
    IterableOps
  148. def withSetFilter(p: (NodeT) => Boolean): Set[NodeT] with FilterableSet[NodeT]
    Definition Classes
    FilterableSet
  149. def zip[B](that: IterableOnce[B]): Set[(NodeT, B)]
    Definition Classes
    IterableOps
  150. def zipAll[A1 >: NodeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  151. def zipWithIndex: Set[(NodeT, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  152. final def |(that: Set[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from NodeSet toany2stringadd[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[NodeSet]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

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

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

  5. def -(elem: NodeT): Set[NodeT]
    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: IterableOnce[NodeT]): Set[NodeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

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

    (Since version 2.13.0) Use foldLeft instead of /:

  9. def :\[B](z: B)(op: (NodeT, B) => B): B
    Implicit
    This member is added by an implicit conversion from NodeSet toIterableOnceExtensionMethods[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[NodeT]).:\(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: (NodeT, 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, 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.

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.find instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

  46. final def repr: Set[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

  47. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from NodeSet toIterableOnceExtensionMethods[NodeT] 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: NodeSet.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 NodeSet toIterableOnceExtensionMethods[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[NodeT]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

  56. final def toIterable: NodeSet.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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  66. final def toTraversable: Traversable[NodeT]
    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

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

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

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

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

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

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

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

Inherited from FilterableSet[NodeT]

Inherited from Set[NodeT]

Inherited from Equals

Inherited from SetOps[NodeT, Set, Set[NodeT]]

Inherited from (NodeT) => Boolean

Inherited from Iterable[NodeT]

Inherited from IterableFactoryDefaults[NodeT, [x]Set[x]]

Inherited from IterableOps[NodeT, [_]Set[_], Set[NodeT]]

Inherited from IterableOnceOps[NodeT, [_]Set[_], Set[NodeT]]

Inherited from IterableOnce[NodeT]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromNodeSet to IterableOnceExtensionMethods[NodeT]

Inherited by implicit conversion any2stringadd fromNodeSet to any2stringadd[NodeSet]

Inherited by implicit conversion StringFormat fromNodeSet to StringFormat[NodeSet]

Inherited by implicit conversion Ensuring fromNodeSet to Ensuring[NodeSet]

Inherited by implicit conversion ArrowAssoc fromNodeSet to ArrowAssoc[NodeSet]

Ungrouped