Packages

final class WrappedSet[T] extends AbstractSet[T] with SetOps[T, WrappedSet, WrappedSet[T]]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedSet
  2. AbstractSet
  3. Set
  4. SetOps
  5. Shrinkable
  6. Builder
  7. Growable
  8. Clearable
  9. Cloneable
  10. Cloneable
  11. Iterable
  12. AbstractSet
  13. Set
  14. Equals
  15. SetOps
  16. Function1
  17. AbstractIterable
  18. Iterable
  19. IterableFactoryDefaults
  20. IterableOps
  21. IterableOnceOps
  22. IterableOnce
  23. AnyRef
  24. 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

Instance Constructors

  1. new WrappedSet(underlying: Set[T])

Value Members

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

Shadowed Implicit Value Members

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

Deprecated Value Members

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

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

  2. def +(elem: T): WrappedSet[T]
    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 >: T](that: collection.IterableOnce[B]): WrappedSet[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  4. final def +=(elem1: T, elem2: T, elems: T*): WrappedSet.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: T, elem2: T, elems: T*): WrappedSet[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  6. def -(elem: T): WrappedSet[T]
    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: collection.IterableOnce[T]): WrappedSet[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  8. def -=(elem1: T, elem2: T, elems: T*): WrappedSet.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. def /:[B](z: B)(op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

  11. def :\[B](z: B)(op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

  13. def aggregate[B](z: => B)(seqop: (B, T) => 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.

  14. def collectFirst[B](f: PartialFunction[T, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use iterableFactory instead

  16. def copyToBuffer(dest: Buffer[T]): Unit
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

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

  20. def filter(f: (T) => Boolean): collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  21. def find(p: (T) => Boolean): Option[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

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

    (Since version 2.13.0) Use .iterator.foldRight instead

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

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

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

    (Since version 2.13.0) Use .iterator.isEmpty instead

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

    (Since version 2.13.0) Use .iterator.max instead

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

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

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

    (Since version 2.13.0) Use .iterator.min instead

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

    (Since version 2.13.0) Use .iterator.nonEmpty instead

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

    (Since version 2.13.0) Use .iterator.product instead

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

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

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

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

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

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

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

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

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

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

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

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

  47. final def repr: WrappedSet[T]
    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: (T) => Boolean): Unit
    Definition Classes
    SetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

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

    (Since version 2.13.0) Use .iterator.size instead

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

    (Since version 2.13.0) Use .iterator.sum instead

  53. def to[C1](factory: Factory[T, C1]): C1
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).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]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).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 WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  56. def toIndexedSeq: collection.IndexedSeq[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

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

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

  58. final def toIterable: WrappedSet.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: collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  61. def toList: collection.immutable.List[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

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

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

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

  66. final def toStream: collection.immutable.Stream[T]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  68. final def toTraversable: collection.Traversable[T]
    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: collection.immutable.Vector[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).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[T]
    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: (T) => Boolean): collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from WrappedSet[T] toIterableOnceExtensionMethods[T] 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:
    (wrappedSet: IterableOnceExtensionMethods[T]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

Inherited from collection.mutable.Set[T]

Inherited from SetOps[T, [X]WrappedSet[X], WrappedSet[T]]

Inherited from Shrinkable[T]

Inherited from Builder[T, WrappedSet[T]]

Inherited from Growable[T]

Inherited from Clearable

Inherited from java.lang.Cloneable

Inherited from collection.mutable.Iterable[T]

Inherited from AbstractSet[T]

Inherited from collection.Set[T]

Inherited from Equals

Inherited from SetOps[T, [_]WrappedSet[_], WrappedSet[T]]

Inherited from (T) => Boolean

Inherited from AbstractIterable[T]

Inherited from collection.Iterable[T]

Inherited from collection.IterableOps[T, [_]WrappedSet[_], WrappedSet[T]]

Inherited from IterableOnceOps[T, [_]WrappedSet[_], WrappedSet[T]]

Inherited from collection.IterableOnce[T]

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion iterableOnceExtensionMethods fromWrappedSet[T] to IterableOnceExtensionMethods[T]

Inherited by implicit conversion any2stringadd fromWrappedSet[T] to any2stringadd[WrappedSet[T]]

Inherited by implicit conversion StringFormat fromWrappedSet[T] to StringFormat[WrappedSet[T]]

Inherited by implicit conversion Ensuring fromWrappedSet[T] to Ensuring[WrappedSet[T]]

Inherited by implicit conversion ArrowAssoc fromWrappedSet[T] to ArrowAssoc[WrappedSet[T]]

Ungrouped