Packages

trait GraphNodeSet extends CC.NodeSet with CC.NodeSetToString

Linear Supertypes
CC.NodeSetToString, CC.SetToString[CC.NodeT], CC.NodeSet, ExtSetMethods[CC.NodeT], FilterableSet[CC.NodeT], Set[CC.NodeT], Equals, SetOps[CC.NodeT, Set, Set[CC.NodeT]], (CC.NodeT) => Boolean, Iterable[CC.NodeT], IterableFactoryDefaults[CC.NodeT, [x]Set[x]], IterableOps[CC.NodeT, [_]Set[_], Set[CC.NodeT]], IterableOnceOps[CC.NodeT, [_]Set[_], Set[CC.NodeT]], IterableOnce[CC.NodeT], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GraphNodeSet
  2. NodeSetToString
  3. SetToString
  4. NodeSet
  5. ExtSetMethods
  6. FilterableSet
  7. Set
  8. Equals
  9. SetOps
  10. Function1
  11. Iterable
  12. IterableFactoryDefaults
  13. IterableOps
  14. IterableOnceOps
  15. IterableOnce
  16. AnyRef
  17. 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: CC.NodeT): Boolean
    Definition Classes
    SetOps
  2. abstract def copy: CC.NodeSetT
    Attributes
    protected
  3. abstract def draw(random: Random): CC.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[CC.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: (CC.NodeT, B) => Boolean): CC.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): CC.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]): 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[CC.NodeT]
    Definition Classes
    IterableOnce
  9. abstract def lookup(outerNode: N): CC.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: CC.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[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: IterableOnce[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: CC.NodeT](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def -(node: CC.NodeT): CC.NodeSetT
    Definition Classes
    GraphNodeSet → SetOps
  8. def ->[B](y: B): (CC.GraphNodeSet, B)
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toArrowAssoc[CC.GraphNodeSet] 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): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  11. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  12. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  13. def adjacencyListsToString: String
    Definition Classes
    NodeSet
  14. def andThen[A](g: (Boolean) => A): (CC.NodeT) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  15. final def apply(elem: CC.NodeT): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  18. final def className: String
    Attributes
    protected
    Definition Classes
    NodeSetToString → Iterable
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  20. final def coll: GraphNodeSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  21. def collect[B](pf: PartialFunction[CC.NodeT, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  22. def collectFirst[B](pf: PartialFunction[CC.NodeT, B]): Option[B]
    Definition Classes
    IterableOnceOps
  23. def compose[A](g: (A) => CC.NodeT): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  24. def concat(that: IterableOnce[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
  25. def concat[B >: CC.NodeT](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  26. def copyToArray[B >: CC.NodeT](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  27. def copyToArray[B >: CC.NodeT](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  28. def copyToArray[B >: CC.NodeT](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  29. def corresponds[B](that: IterableOnce[B])(p: (CC.NodeT, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  30. def count(p: (CC.NodeT) => Boolean): Int
    Definition Classes
    IterableOnceOps
  31. def diff(that: AnySet[CC.NodeT]): AnySet[CC.NodeT]
    Definition Classes
    NodeSet → SetOps
  32. def drop(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def dropRight(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps
  34. def dropWhile(p: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def empty: Set[CC.NodeT]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  36. def ensuring(cond: (CC.GraphNodeSet) => Boolean, msg: => Any): CC.GraphNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toEnsuring[CC.GraphNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: (CC.GraphNodeSet) => Boolean): CC.GraphNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toEnsuring[CC.GraphNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: Boolean, msg: => Any): CC.GraphNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toEnsuring[CC.GraphNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def ensuring(cond: Boolean): CC.GraphNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toEnsuring[CC.GraphNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  40. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  42. def exists(p: (CC.NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def filter(pred: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  44. def filterNot(pred: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  45. def find(p: (CC.NodeT) => Boolean): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  46. def findElem(elem: CC.NodeT): Option[CC.NodeT]
    Definition Classes
    ExtSetMethods
  47. def flatMap[B](f: (CC.NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def flatten[B](implicit asIterable: (CC.NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def fold[A1 >: CC.NodeT](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  50. def foldLeft[B](z: B)(op: (B, CC.NodeT) => B): B
    Definition Classes
    IterableOnceOps
  51. 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.

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

    Iterable over this NodeSet mapped to outer nodes.

    Iterable over this NodeSet mapped to outer nodes.

    Definition Classes
    NodeSet
    Annotations
    @inline()
  94. final def outerIterator: Iterator[N]

    Iterator over this NodeSet mapped to outer nodes.

    Iterator over this NodeSet mapped to outer nodes.

    Definition Classes
    NodeSet
    Annotations
    @inline()
  95. def partition(p: (CC.NodeT) => Boolean): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps
  96. def partitionMap[A1, A2](f: (CC.NodeT) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  97. def product[B >: CC.NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  98. def reduce[B >: CC.NodeT](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  99. def reduceLeft[B >: CC.NodeT](op: (B, CC.NodeT) => B): B
    Definition Classes
    IterableOnceOps
  100. def reduceLeftOption[B >: CC.NodeT](op: (B, CC.NodeT) => B): Option[B]
    Definition Classes
    IterableOnceOps
  101. def reduceOption[B >: CC.NodeT](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  102. def reduceRight[B >: CC.NodeT](op: (CC.NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  103. def reduceRightOption[B >: CC.NodeT](op: (CC.NodeT, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  104. def render(style: SetStyle, separator: String, withPrefix: Boolean)(implicit ord: Ordering[CC.NodeT]): String

    Sorts all nodes according to ord, concatenates them using separator, and prefixes and parenthesizes the result if withPrefix is true.

    Sorts all nodes according to ord, concatenates them using separator, and prefixes and parenthesizes the result if withPrefix is true.

    Definition Classes
    SetToString
  105. def render(style: SetStyle, separator: String = GraphBase.defaultSeparator, prefix: String = className)(implicit ord: Ordering[CC.NodeT]): String

    Sorts all nodes according to ord, concatenates them using separator, and prefixes and parenthesizes the result unless prefix is blank.

    Sorts all nodes according to ord, concatenates them using separator, and prefixes and parenthesizes the result unless prefix is blank.

    Definition Classes
    SetToString
  106. def reversed: Iterable[CC.NodeT]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  107. def scan[B >: CC.NodeT](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  108. def scanLeft[B](z: B)(op: (B, CC.NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  109. def scanRight[B](z: B)(op: (CC.NodeT, B) => B): Set[B]
    Definition Classes
    IterableOps
  110. def size: Int
    Definition Classes
    IterableOnceOps
  111. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  112. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  113. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  114. def slice(from: Int, until: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  115. def sliding(size: Int, step: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  116. def sliding(size: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  117. def span(p: (CC.NodeT) => Boolean): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  118. def splitAt(n: Int): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  119. def stepper[S <: Stepper[_]](implicit shape: StepperShape[CC.NodeT, S]): S
    Definition Classes
    IterableOnce
  120. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  121. def subsetOf(that: Set[CC.NodeT]): Boolean
    Definition Classes
    SetOps
  122. def subsets(): Iterator[Set[CC.NodeT]]
    Definition Classes
    SetOps
  123. def subsets(len: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    SetOps
  124. final def subtract(node: CC.NodeT, rippleDelete: Boolean, minusNode: (CC.NodeT) => Unit, minusEdges: (CC.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]
  125. def sum[B >: CC.NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  126. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  127. def tail: Set[CC.NodeT]
    Definition Classes
    IterableOps
  128. def tails: Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  129. def take(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  130. def takeRight(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps
  131. def takeWhile(p: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  132. def tapEach[U](f: (CC.NodeT) => U): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  133. def to[C1](factory: Factory[CC.NodeT, C1]): C1
    Definition Classes
    IterableOnceOps
  134. def toArray[B >: CC.NodeT](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  135. final def toBuffer[B >: CC.NodeT]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  136. def toIndexedSeq: IndexedSeq[CC.NodeT]
    Definition Classes
    IterableOnceOps
  137. def toList: List[CC.NodeT]
    Definition Classes
    IterableOnceOps
  138. def toMap[K, V](implicit ev: <:<[CC.NodeT, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  139. 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
  140. def toSeq: Seq[CC.NodeT]
    Definition Classes
    IterableOnceOps
  141. def toSet[B >: CC.NodeT]: Set[B]
    Definition Classes
    IterableOnceOps
  142. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  143. def toVector: Vector[CC.NodeT]
    Definition Classes
    IterableOnceOps
  144. def transpose[B](implicit asIterable: (CC.NodeT) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  145. final def union(that: Set[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  146. def unzip[A1, A2](implicit asPair: (CC.NodeT) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  147. def unzip3[A1, A2, A3](implicit asTriple: (CC.NodeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  148. def view: View[CC.NodeT]
    Definition Classes
    IterableOps
  149. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  150. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  151. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  152. def withFilter(p: (CC.NodeT) => Boolean): WithFilter[CC.NodeT, [_]Set[_]]
    Definition Classes
    IterableOps
  153. def withSetFilter(p: (CC.NodeT) => Boolean): Set[CC.NodeT] with FilterableSet[CC.NodeT]
    Definition Classes
    FilterableSet
  154. def zip[B](that: IterableOnce[B]): Set[(CC.NodeT, B)]
    Definition Classes
    IterableOps
  155. def zipAll[A1 >: CC.NodeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  156. def zipWithIndex: Set[(CC.NodeT, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  157. final def |(that: Set[CC.NodeT]): Set[CC.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 CC.GraphNodeSet toany2stringadd[CC.GraphNodeSet] 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:
    (graphNodeSet: any2stringadd[CC.GraphNodeSet]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

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

    (Since version 2.13.0) Consider requiring an immutable Set

  6. def /:[B](z: B)(op: (B, CC.NodeT) => B): B
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.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, CC.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: (CC.NodeT, B) => B): B
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.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: (CC.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, CC.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[CC.NodeT, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.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[CC.NodeT]): Unit
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.find instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

  26. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toStringFormat[CC.GraphNodeSet] 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.

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

  28. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

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

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

  35. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

  37. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.sameElements instead

  47. def seq: GraphNodeSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  48. def size: Int
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

  52. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toIterableOnceExtensionMethods[CC.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:
    (graphNodeSet: IterableOnceExtensionMethods[CC.NodeT]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

  55. final def toIterable: GraphNodeSet.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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  65. final def toTraversable: Traversable[CC.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

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

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

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

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

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

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

  69. def [B](y: B): (CC.GraphNodeSet, B)
    Implicit
    This member is added by an implicit conversion from CC.GraphNodeSet toArrowAssoc[CC.GraphNodeSet] 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 CC.NodeSetToString

Inherited from CC.SetToString[CC.NodeT]

Inherited from CC.NodeSet

Inherited from ExtSetMethods[CC.NodeT]

Inherited from FilterableSet[CC.NodeT]

Inherited from Set[CC.NodeT]

Inherited from Equals

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

Inherited from (CC.NodeT) => Boolean

Inherited from Iterable[CC.NodeT]

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

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

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

Inherited from IterableOnce[CC.NodeT]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromCC.GraphNodeSet to IterableOnceExtensionMethods[CC.NodeT]

Inherited by implicit conversion any2stringadd fromCC.GraphNodeSet to any2stringadd[CC.GraphNodeSet]

Inherited by implicit conversion StringFormat fromCC.GraphNodeSet to StringFormat[CC.GraphNodeSet]

Inherited by implicit conversion Ensuring fromCC.GraphNodeSet to Ensuring[CC.GraphNodeSet]

Inherited by implicit conversion ArrowAssoc fromCC.GraphNodeSet to ArrowAssoc[CC.GraphNodeSet]

Ungrouped