Packages

t

zio.internal

MutableSetCompat

trait MutableSetCompat[V] extends Set[V]

Linear Supertypes
Set[V], SetOps[V, Set, Set[V]], Shrinkable[V], Builder[V, Set[V]], Growable[V], Clearable, Cloneable[Set[V]], Cloneable, Set[V], Equals, SetOps[V, [_]Set[_], Set[V]], (V) => Boolean, Iterable[V], Iterable[V], IterableFactoryDefaults[V, [x]Set[x]], IterableOps[V, [_]Set[_], Set[V]], IterableOnceOps[V, [_]Set[_], Set[V]], IterableOnce[V], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MutableSetCompat
  2. Set
  3. SetOps
  4. Shrinkable
  5. Builder
  6. Growable
  7. Clearable
  8. Cloneable
  9. Cloneable
  10. Set
  11. Equals
  12. SetOps
  13. Function1
  14. Iterable
  15. Iterable
  16. IterableFactoryDefaults
  17. IterableOps
  18. IterableOnceOps
  19. IterableOnce
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def clear(): Unit
    Definition Classes
    Builder → Clearable
  2. abstract def contains(elem: V): Boolean
    Definition Classes
    SetOps
  3. abstract def iterator: Iterator[V]
    Definition Classes
    IterableOnce

Concrete Value Members

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

Deprecated Value Members

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

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

  2. def +(elem: V): Set[V]
    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 >: V](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: V, elem2: V, elems: V*): MutableSetCompat.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: V, elem2: V, elems: V*): Set[V]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  6. def -(elem: V): Set[V]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  7. def --(that: IterableOnce[V]): Set[V]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  8. def -=(elem1: V, elem2: V, elems: V*): MutableSetCompat.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

  9. final def /:[B](z: B)(op: (B, V) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  11. def aggregate[B](z: => B)(seqop: (B, V) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

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

  16. final def repr: Set[V]
    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

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

    (Since version 2.13.0) Use filterInPlace instead

  18. def seq: MutableSetCompat.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  19. final def toIterable: MutableSetCompat.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

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

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

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

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

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

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

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

Inherited from Set[V]

Inherited from SetOps[V, Set, Set[V]]

Inherited from Shrinkable[V]

Inherited from Builder[V, Set[V]]

Inherited from Growable[V]

Inherited from Clearable

Inherited from Cloneable[Set[V]]

Inherited from Cloneable

Inherited from Set[V]

Inherited from Equals

Inherited from SetOps[V, [_]Set[_], Set[V]]

Inherited from (V) => Boolean

Inherited from Iterable[V]

Inherited from Iterable[V]

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

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

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

Inherited from IterableOnce[V]

Inherited from AnyRef

Inherited from Any

Ungrouped