Packages

trait GraphLikeNodeSet extends MSet[CC.NodeT] with CC.GraphNodeSet

Linear Supertypes
CC.GraphNodeSet, CC.NodeSetToString, CC.SetToString[CC.NodeT], CC.NodeSet, ExtSetMethods[CC.NodeT], FilterableSet[CC.NodeT], Set[CC.NodeT], SetOps[CC.NodeT, Set, Set[CC.NodeT]], scala.collection.mutable.Shrinkable[CC.NodeT], scala.collection.mutable.Builder[CC.NodeT, Set[CC.NodeT]], scala.collection.mutable.Growable[CC.NodeT], Clearable, Cloneable[Set[CC.NodeT]], Cloneable, Set[CC.NodeT], Equals, SetOps[CC.NodeT, [_]Set[_], Set[CC.NodeT]], (CC.NodeT) => Boolean, Iterable[CC.NodeT], 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
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GraphLikeNodeSet
  2. GraphNodeSet
  3. NodeSetToString
  4. SetToString
  5. NodeSet
  6. ExtSetMethods
  7. FilterableSet
  8. Set
  9. SetOps
  10. Shrinkable
  11. Builder
  12. Growable
  13. Clearable
  14. Cloneable
  15. Cloneable
  16. Set
  17. Equals
  18. SetOps
  19. Function1
  20. Iterable
  21. Iterable
  22. IterableFactoryDefaults
  23. IterableOps
  24. IterableOnceOps
  25. IterableOnce
  26. AnyRef
  27. 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 addOne(elem: CC.NodeT): GraphLikeNodeSet.this.type
    Definition Classes
    Growable
  2. abstract def contains(elem: CC.NodeT): Boolean
    Definition Classes
    SetOps
  3. abstract def copy: CC.NodeSetT
    Attributes
    protected
    Definition Classes
    GraphNodeSet
  4. 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
  5. 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
  6. 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
  7. 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
  8. 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
  9. abstract def iterator: Iterator[CC.NodeT]
    Definition Classes
    IterableOnce
  10. 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
  11. 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
    Definition Classes
    GraphNodeSet
  12. abstract def minusEdges(node: CC.NodeT): Unit

    removes all incident edges of node from the edge set leaving the node set unchanged.

    removes all incident edges of node from the edge set leaving the node set unchanged.

    node

    the node the incident edges of which are to be removed from the edge set.

    Attributes
    protected
  13. abstract def subtractOne(elem: CC.NodeT): GraphLikeNodeSet.this.type
    Definition Classes
    Shrinkable

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 ++=(xs: IterableOnce[CC.NodeT]): GraphLikeNodeSet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: CC.NodeT): GraphLikeNodeSet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def -(node: CC.NodeT): CC.NodeSetT
    Definition Classes
    GraphNodeSet → SetOps
  10. final def --=(xs: IterableOnce[CC.NodeT]): GraphLikeNodeSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. final def -=(elem: CC.NodeT): GraphLikeNodeSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  12. def ->[B](y: B): (CC.GraphLikeNodeSet, B)
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet toArrowAssoc[CC.GraphLikeNodeSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def add(elem: CC.NodeT): Boolean
    Definition Classes
    SetOps
  15. def addAll(xs: IterableOnce[CC.NodeT]): GraphLikeNodeSet.this.type
    Definition Classes
    Growable
  16. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  17. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  18. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  19. def adjacencyListsToString: String
    Definition Classes
    NodeSet
  20. def andThen[A](g: (Boolean) => A): (CC.NodeT) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  21. final def apply(elem: CC.NodeT): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  22. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  23. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  24. final def className: String
    Attributes
    protected
    Definition Classes
    NodeSetToString → Iterable
  25. def clear(): Unit
    Definition Classes
    GraphLikeNodeSet → Builder → Clearable
  26. def clone(): Set[CC.NodeT]
    Definition Classes
    SetOps → Cloneable → AnyRef
  27. final def coll: GraphLikeNodeSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  28. def collect[B](pf: PartialFunction[CC.NodeT, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  29. def collectFirst[B](pf: PartialFunction[CC.NodeT, B]): Option[B]
    Definition Classes
    IterableOnceOps
  30. def compose[A](g: (A) => CC.NodeT): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  31. def concat(that: IterableOnce[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
  32. def concat[B >: CC.NodeT](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  33. def copyToArray[B >: CC.NodeT](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  34. def copyToArray[B >: CC.NodeT](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  35. def copyToArray[B >: CC.NodeT](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  36. def corresponds[B](that: IterableOnce[B])(p: (CC.NodeT, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  37. def count(p: (CC.NodeT) => Boolean): Int
    Definition Classes
    IterableOnceOps
  38. def diff(that: AnySet[CC.NodeT]): MSet[CC.NodeT]
    Definition Classes
    GraphLikeNodeSetNodeSet → SetOps → SetOps
  39. def drop(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  40. def dropRight(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps
  41. def dropWhile(p: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  42. def empty: Set[CC.NodeT]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  43. def ensuring(cond: (CC.GraphLikeNodeSet) => Boolean, msg: => Any): CC.GraphLikeNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet toEnsuring[CC.GraphLikeNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: (CC.GraphLikeNodeSet) => Boolean): CC.GraphLikeNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet toEnsuring[CC.GraphLikeNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. def ensuring(cond: Boolean, msg: => Any): CC.GraphLikeNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet toEnsuring[CC.GraphLikeNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: Boolean): CC.GraphLikeNodeSet
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet toEnsuring[CC.GraphLikeNodeSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  48. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  49. def exists(p: (CC.NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  50. def filter(pred: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  51. def filterInPlace(p: (CC.NodeT) => Boolean): GraphLikeNodeSet.this.type
    Definition Classes
    SetOps
  52. def filterNot(pred: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def find(p: (CC.NodeT) => Boolean): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  54. def findElem(elem: CC.NodeT): Option[CC.NodeT]
    Definition Classes
    ExtSetMethods
  55. def flatMap[B](f: (CC.NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  56. def flatten[B](implicit asIterable: (CC.NodeT) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  57. def fold[A1 >: CC.NodeT](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  58. def foldLeft[B](z: B)(op: (B, CC.NodeT) => B): B
    Definition Classes
    IterableOnceOps
  59. 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
  60. def foldRight[B](z: B)(op: (CC.NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  61. def forall(p: (CC.NodeT) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  62. def foreach[U](f: (CC.NodeT) => U): Unit
    Definition Classes
    IterableOnceOps
  63. def fromSpecific(coll: IterableOnce[CC.NodeT]): Set[CC.NodeT]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  64. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  65. def groupBy[K](f: (CC.NodeT) => K): Map[K, Set[CC.NodeT]]
    Definition Classes
    IterableOps
  66. def groupMap[K, B](key: (CC.NodeT) => K)(f: (CC.NodeT) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  67. def groupMapReduce[K, B](key: (CC.NodeT) => K)(f: (CC.NodeT) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  68. def grouped(size: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  69. def handleNotGentlyRemovable: Boolean
    Attributes
    protected
    Definition Classes
    GraphNodeSet
  70. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  71. def head: CC.NodeT
    Definition Classes
    IterableOps
  72. def headOption: Option[CC.NodeT]
    Definition Classes
    IterableOps
  73. def init: Set[CC.NodeT]
    Definition Classes
    IterableOps
  74. def inits: Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  75. def intersect(that: Set[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
  76. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  77. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  78. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  79. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Set → Iterable → Iterable → IterableOps
  80. def knownSize: Int
    Definition Classes
    SetOps → Growable → IterableOnce
  81. def last: CC.NodeT
    Definition Classes
    IterableOps
  82. def lastOption: Option[CC.NodeT]
    Definition Classes
    IterableOps
  83. def lazyZip[B](that: Iterable[B]): LazyZip2[CC.NodeT, B, GraphLikeNodeSet.this.type]
    Definition Classes
    Iterable
  84. def map[B](f: (CC.NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  85. def mapResult[NewTo](f: (Set[CC.NodeT]) => NewTo): scala.collection.mutable.Builder[CC.NodeT, NewTo]
    Definition Classes
    Builder
  86. def max[B >: CC.NodeT](implicit ord: Ordering[B]): CC.NodeT
    Definition Classes
    IterableOnceOps
  87. def maxBy[B](f: (CC.NodeT) => B)(implicit cmp: Ordering[B]): CC.NodeT
    Definition Classes
    IterableOnceOps
  88. def maxByOption[B](f: (CC.NodeT) => B)(implicit cmp: Ordering[B]): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  89. def maxOption[B >: CC.NodeT](implicit ord: Ordering[B]): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  90. def min[B >: CC.NodeT](implicit ord: Ordering[B]): CC.NodeT
    Definition Classes
    IterableOnceOps
  91. def minBy[B](f: (CC.NodeT) => B)(implicit cmp: Ordering[B]): CC.NodeT
    Definition Classes
    IterableOnceOps
  92. def minByOption[B](f: (CC.NodeT) => B)(implicit cmp: Ordering[B]): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  93. def minOption[B >: CC.NodeT](implicit ord: Ordering[B]): Option[CC.NodeT]
    Definition Classes
    IterableOnceOps
  94. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  95. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  96. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  97. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  98. def newSpecificBuilder: scala.collection.mutable.Builder[CC.NodeT, Set[CC.NodeT]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  99. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  100. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  101. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  102. 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()
  103. 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()
  104. def partition(p: (CC.NodeT) => Boolean): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps
  105. def partitionMap[A1, A2](f: (CC.NodeT) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  106. def product[B >: CC.NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  107. def reduce[B >: CC.NodeT](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  108. def reduceLeft[B >: CC.NodeT](op: (B, CC.NodeT) => B): B
    Definition Classes
    IterableOnceOps
  109. def reduceLeftOption[B >: CC.NodeT](op: (B, CC.NodeT) => B): Option[B]
    Definition Classes
    IterableOnceOps
  110. def reduceOption[B >: CC.NodeT](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  111. def reduceRight[B >: CC.NodeT](op: (CC.NodeT, B) => B): B
    Definition Classes
    IterableOnceOps
  112. def reduceRightOption[B >: CC.NodeT](op: (CC.NodeT, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  113. def remove(node: CC.NodeT): Boolean
    Definition Classes
    GraphLikeNodeSet → SetOps
  114. 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
  115. 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
  116. def result(): Set[CC.NodeT]
    Definition Classes
    SetOps → Builder
  117. def reversed: Iterable[CC.NodeT]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  118. def scan[B >: CC.NodeT](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  119. def scanLeft[B](z: B)(op: (B, CC.NodeT) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  120. def scanRight[B](z: B)(op: (CC.NodeT, B) => B): Set[B]
    Definition Classes
    IterableOps
  121. def size: Int
    Definition Classes
    IterableOnceOps
  122. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  123. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  124. final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  125. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  126. final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
    Definition Classes
    Builder
  127. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  128. def slice(from: Int, until: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  129. def sliding(size: Int, step: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  130. def sliding(size: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  131. def span(p: (CC.NodeT) => Boolean): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  132. def splitAt(n: Int): (Set[CC.NodeT], Set[CC.NodeT])
    Definition Classes
    IterableOps → IterableOnceOps
  133. def stepper[S <: Stepper[_]](implicit shape: StepperShape[CC.NodeT, S]): S
    Definition Classes
    IterableOnce
  134. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  135. def subsetOf(that: Set[CC.NodeT]): Boolean
    Definition Classes
    SetOps
  136. def subsets(): Iterator[Set[CC.NodeT]]
    Definition Classes
    SetOps
  137. def subsets(len: Int): Iterator[Set[CC.NodeT]]
    Definition Classes
    SetOps
  138. 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]
    Definition Classes
    GraphNodeSet
  139. def subtractAll(xs: IterableOnce[CC.NodeT]): GraphLikeNodeSet.this.type
    Definition Classes
    Shrinkable
  140. def sum[B >: CC.NodeT](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  141. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  142. def tail: Set[CC.NodeT]
    Definition Classes
    IterableOps
  143. def tails: Iterator[Set[CC.NodeT]]
    Definition Classes
    IterableOps
  144. def take(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  145. def takeRight(n: Int): Set[CC.NodeT]
    Definition Classes
    IterableOps
  146. def takeWhile(p: (CC.NodeT) => Boolean): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  147. def tapEach[U](f: (CC.NodeT) => U): Set[CC.NodeT]
    Definition Classes
    IterableOps → IterableOnceOps
  148. def to[C1](factory: Factory[CC.NodeT, C1]): C1
    Definition Classes
    IterableOnceOps
  149. def toArray[B >: CC.NodeT](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  150. final def toBuffer[B >: CC.NodeT]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  151. def toIndexedSeq: IndexedSeq[CC.NodeT]
    Definition Classes
    IterableOnceOps
  152. def toList: List[CC.NodeT]
    Definition Classes
    IterableOnceOps
  153. def toMap[K, V](implicit ev: <:<[CC.NodeT, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  154. 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
  155. def toSeq: Seq[CC.NodeT]
    Definition Classes
    IterableOnceOps
  156. def toSet[B >: CC.NodeT]: Set[B]
    Definition Classes
    IterableOnceOps
  157. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  158. def toVector: Vector[CC.NodeT]
    Definition Classes
    IterableOnceOps
  159. def transpose[B](implicit asIterable: (CC.NodeT) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  160. final def union(that: Set[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @inline()
  161. def unzip[A1, A2](implicit asPair: (CC.NodeT) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  162. def unzip3[A1, A2, A3](implicit asTriple: (CC.NodeT) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  163. def update(elem: CC.NodeT, included: Boolean): Unit
    Definition Classes
    SetOps
  164. def view: View[CC.NodeT]
    Definition Classes
    IterableOps
  165. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  166. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  167. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  168. def withFilter(p: (CC.NodeT) => Boolean): WithFilter[CC.NodeT, [_]Set[_]]
    Definition Classes
    IterableOps
  169. def withSetFilter(p: (CC.NodeT) => Boolean): Set[CC.NodeT] with FilterableSet[CC.NodeT]
    Definition Classes
    FilterableSet
  170. def zip[B](that: IterableOnce[B]): Set[(CC.NodeT, B)]
    Definition Classes
    IterableOps
  171. def zipAll[A1 >: CC.NodeT, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  172. def zipWithIndex: Set[(CC.NodeT, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  173. 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.GraphLikeNodeSet toany2stringadd[CC.GraphLikeNodeSet] 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:
    (graphLikeNodeSet: any2stringadd[CC.GraphLikeNodeSet]).+(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. final def +=(elem1: CC.NodeT, elem2: CC.NodeT, elems: CC.NodeT*): GraphLikeNodeSet.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

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

  6. def --(that: IterableOnce[CC.NodeT]): Set[CC.NodeT]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  7. def -=(elem1: CC.NodeT, elem2: CC.NodeT, elems: CC.NodeT*): GraphLikeNodeSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

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

    (Since version 2.13.0) Use .iterator.foldLeft instead

  9. 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 /:

  10. def :\[B](z: B)(op: (CC.NodeT, B) => B): B
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  11. 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 :\

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

  13. def collectFirst[B](f: PartialFunction[CC.NodeT, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use iterableFactory instead

  15. def copyToBuffer(dest: Buffer[CC.NodeT]): Unit
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

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

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

  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  21. def find(p: (CC.NodeT) => Boolean): Option[CC.NodeT]
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  22. def flatMap[B](f: (CC.NodeT) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: 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

  23. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  24. def foldLeft[B](z: B)(op: (B, CC.NodeT) => B): B
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: IterableOnceExtensionMethods[CC.NodeT]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

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

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

  31. def map[B](f: (CC.NodeT) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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:
    (graphLikeNodeSet: 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

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

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

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.mkString instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

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

  48. final def retain(p: (CC.NodeT) => Boolean): Unit
    Definition Classes
    SetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  49. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from CC.GraphLikeNodeSet 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

  50. def seq: GraphLikeNodeSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

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

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

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

    (Since version 2.13.0) Use .iterator.toArray

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

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

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

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

  58. final def toIterable: GraphLikeNodeSet.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

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

    (Since version 2.13.0) Use .iterator instead

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 SetOps[CC.NodeT, Set, Set[CC.NodeT]]

Inherited from scala.collection.mutable.Shrinkable[CC.NodeT]

Inherited from scala.collection.mutable.Builder[CC.NodeT, Set[CC.NodeT]]

Inherited from scala.collection.mutable.Growable[CC.NodeT]

Inherited from Clearable

Inherited from Cloneable[Set[CC.NodeT]]

Inherited from Cloneable

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 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.GraphLikeNodeSet to IterableOnceExtensionMethods[CC.NodeT]

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

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

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

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

Ungrouped