Packages

class Set[T] extends Object with Iterable[T]

ECMAScript 2015

The Set object lets you store unique values of any type, whether primitive values or object references.

T

A type of element.

Annotations
@JSType() @native() @JSGlobal()
See also

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Set
  2. Iterable
  3. Object
  4. Any
  5. AnyRef
  6. Any
Implicitly
  1. by wrapSet
  2. by iterableOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Set(array: Iterable[T])
  2. new Set()

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]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: collection.Set[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toany2stringadd[Set[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  6. final def ++[B >: A](suffix: collection.IterableOnce[B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++=(xs: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: T): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def --=(xs: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def -=(elem: T): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. def ->[B](y: B): (Set[T], B)
    Implicit
    This member is added by an implicit conversion from Set[T] toArrowAssoc[Set[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
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetOps
  14. def addAll(xs: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  15. def addOne(elem: T): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → Growable
  16. def andThen[A](g: (Boolean) => A): (T) => A
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  17. final def apply(elem: T): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Set → Equals
  20. def clear(): Unit
  21. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  22. def compose[A](g: (A) => T): (A) => Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  23. def concat[B >: A](suffix: collection.IterableOnce[B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  24. def contains(value: T): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetOps
  25. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  26. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  27. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  28. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  29. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  30. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  31. def diff(that: collection.Set[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps → SetOps
  32. def ensuring(cond: (Set[T]) => Boolean, msg: => scala.Any): Set[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toEnsuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: (Set[T]) => Boolean): Set[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toEnsuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean, msg: => scala.Any): Set[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toEnsuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean): Set[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toEnsuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  38. def filterInPlace(p: (T) => Boolean): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  39. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  40. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  41. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  42. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toStringFormat[Set[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  43. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. def hasOwnProperty(v: String): Boolean

    Tests whether this object has the specified property as a direct property.

    Tests whether this object has the specified property as a direct property.

    Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.

    MDN

    Definition Classes
    Object
  45. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  46. def intersect(that: collection.Set[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  47. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  48. def isPrototypeOf(v: Object): Boolean

    Tests whether this object is in the prototype chain of another object.

    Tests whether this object is in the prototype chain of another object.

    Definition Classes
    Object
  49. def jsIterator(): Iterator[T]

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Definition Classes
    SetIterable
    Annotations
    @JSName(symbol = js.Symbol.iterator)
  50. def mapResult[NewTo](f: (WrappedSet[T]) => NewTo): Builder[T, NewTo]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  51. def max[B >: A](implicit ord: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  52. def max[B >: A](implicit ord: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  53. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  54. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  55. def min[B >: A](implicit ord: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  56. def min[B >: A](implicit ord: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  57. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  58. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  59. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  60. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  61. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  62. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  63. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  64. def propertyIsEnumerable(v: String): Boolean

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.

    If the object does not have the specified property, this method returns false.

    MDN

    Definition Classes
    Object
  65. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  66. def reduce[B >: A](op: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  67. def reduceLeft[B >: A](op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  68. def reduceLeft[B >: A](op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  69. def reduceLeftOption[B >: A](op: (B, T) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  70. def reduceLeftOption[B >: A](op: (B, T) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  71. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  72. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  73. def reduceRight[B >: A](op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  74. def reduceRight[B >: A](op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  75. def reduceRightOption[B >: A](op: (T, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  76. def reduceRightOption[B >: A](op: (T, B) => B): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  77. def remove(elem: T): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetOps
  78. def result(): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps → Builder
  79. def scan[B >: A](z: B)(op: (B, B) => B): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  80. def scan[B >: A](z: B)(op: (B, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  81. def size: Int
  82. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  83. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  84. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  85. def subsetOf(that: collection.Set[T]): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  86. def subsets(): collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  87. def subsets(len: Int): collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  88. def subtractAll(xs: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  89. def subtractOne(elem: T): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → Shrinkable
  90. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  91. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  92. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  93. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  94. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  95. def toLocaleString(): String
    Definition Classes
    Object
  96. def toString(): String
    Definition Classes
    AnyRef → Any
  97. final def union(that: collection.Set[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @inline()
  98. def update(elem: T, included: Boolean): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
  99. def valueOf(): scala.Any
    Definition Classes
    Object
  100. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  101. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  102. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  103. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): WrappedSet[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  104. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  105. final def |(that: collection.Set[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. final def ++(that: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).++(that)
    Definition Classes
    SetOps
    Annotations
    @inline()
  2. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).++(suffix)
    Definition Classes
    IterableOps
    Annotations
    @inline()
  3. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  4. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  5. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  6. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  9. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).clear()
    Definition Classes
    WrappedSet → Builder → Clearable
  10. def clone(): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).clone()
    Definition Classes
    SetOps → Cloneable → AnyRef
  11. def collect[B](pf: PartialFunction[T, B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  12. def collect[B](pf: PartialFunction[T, B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  13. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  14. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  15. def concat(that: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).concat(that)
    Definition Classes
    SetOps
  16. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).concat(suffix)
    Definition Classes
    IterableOps
  17. def corresponds[B](that: collection.IterableOnce[B])(p: (T, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  18. def corresponds[B](that: collection.IterableOnce[B])(p: (T, B) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  19. def count(p: (T) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).count(p)
    Definition Classes
    IterableOnceOps
  20. def count(p: (T) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).count(p)
    Definition Classes
    IterableOnceOps
  21. def drop(n: Int): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  22. def drop(n: Int): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  23. def dropRight(n: Int): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).dropRight(n)
    Definition Classes
    IterableOps
  24. def dropRight(n: Int): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).dropRight(n)
    Definition Classes
    IterableOps
  25. def dropWhile(p: (T) => Boolean): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  26. def dropWhile(p: (T) => Boolean): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  27. def empty: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).empty
    Definition Classes
    WrappedSet → IterableFactoryDefaults → IterableOps
  28. def empty: collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).empty
    Definition Classes
    IterableFactoryDefaults → IterableOps
  29. def equals(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).equals(that)
    Definition Classes
    Set → Equals → AnyRef → Any
  30. def exists(p: (T) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).exists(p)
    Definition Classes
    IterableOnceOps
  31. def exists(p: (T) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).exists(p)
    Definition Classes
    IterableOnceOps
  32. def filter(pred: (T) => Boolean): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  33. def filter(pred: (T) => Boolean): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  34. def filterNot(pred: (T) => Boolean): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  35. def filterNot(pred: (T) => Boolean): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  36. def find(p: (T) => Boolean): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).find(p)
    Definition Classes
    IterableOnceOps
  37. def find(p: (T) => Boolean): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).find(p)
    Definition Classes
    IterableOnceOps
  38. def flatMap[B](f: (T) => collection.IterableOnce[B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  39. def flatMap[B](f: (T) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  40. def flatten[B](implicit asIterable: (T) => collection.IterableOnce[B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  41. def flatten[B](implicit asIterable: (T) => collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  42. def foldLeft[B](z: B)(op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  43. def foldLeft[B](z: B)(op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  44. def foldRight[B](z: B)(op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  45. def foldRight[B](z: B)(op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  46. def forall(p: (T) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).forall(p)
    Definition Classes
    IterableOnceOps
  47. def forall(p: (T) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).forall(p)
    Definition Classes
    IterableOnceOps
  48. def foreach[U](f: (T) => U): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).foreach(f)
    Definition Classes
    IterableOnceOps
  49. def foreach[U](f: (T) => U): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).foreach(f)
    Definition Classes
    IterableOnceOps
  50. def groupBy[K](f: (T) => K): collection.immutable.Map[K, WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).groupBy(f)
    Definition Classes
    IterableOps
  51. def groupBy[K](f: (T) => K): collection.immutable.Map[K, collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).groupBy(f)
    Definition Classes
    IterableOps
  52. def groupMap[K, B](key: (T) => K)(f: (T) => B): collection.immutable.Map[K, WrappedSet[B]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).groupMap(key)(f)
    Definition Classes
    IterableOps
  53. def groupMap[K, B](key: (T) => K)(f: (T) => B): collection.immutable.Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).groupMap(key)(f)
    Definition Classes
    IterableOps
  54. def groupMapReduce[K, B](key: (T) => K)(f: (T) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  55. def groupMapReduce[K, B](key: (T) => K)(f: (T) => B)(reduce: (B, B) => B): collection.immutable.Map[K, B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  56. def grouped(size: Int): collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).grouped(size)
    Definition Classes
    IterableOps
  57. def grouped(size: Int): collection.Iterator[collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).grouped(size)
    Definition Classes
    IterableOps
  58. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).hashCode()
    Definition Classes
    Set → AnyRef → Any
  59. def head: T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).head
    Definition Classes
    IterableOps
  60. def head: T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).head
    Definition Classes
    IterableOps
  61. def headOption: Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).headOption
    Definition Classes
    IterableOps
  62. def headOption: Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).headOption
    Definition Classes
    IterableOps
  63. def init: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).init
    Definition Classes
    IterableOps
  64. def init: collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).init
    Definition Classes
    IterableOps
  65. def inits: collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).inits
    Definition Classes
    IterableOps
  66. def inits: collection.Iterator[collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).inits
    Definition Classes
    IterableOps
  67. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).isEmpty
    Definition Classes
    IterableOnceOps
  68. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).isEmpty
    Definition Classes
    IterableOnceOps
  69. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  70. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  71. def iterableFactory: IterableFactory[WrappedSet]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).iterableFactory
    Definition Classes
    WrappedSet → Set → Iterable → Set → Iterable → IterableOps
  72. def iterableFactory: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  73. def iterator: collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).iterator
    Definition Classes
    WrappedSet → IterableOnce
  74. def iterator: collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).iterator
    Definition Classes
    IterableOps → IterableOnce
    Annotations
    @inline()
  75. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).knownSize
    Definition Classes
    SetOps → Growable → IterableOnce
  76. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).knownSize
    Definition Classes
    IterableOnce
  77. def last: T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).last
    Definition Classes
    IterableOps
  78. def last: T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).last
    Definition Classes
    IterableOps
  79. def lastOption: Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).lastOption
    Definition Classes
    IterableOps
  80. def lastOption: Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).lastOption
    Definition Classes
    IterableOps
  81. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[T,B,_1.type]) forSome {val _1: WrappedSet[T]}
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).lazyZip
    Definition Classes
    Iterable
  82. def lazyZip[B]: ([B](that: Iterable[B]): scala.collection.LazyZip2[T,B,_1.type]) forSome {val _1: IterableOps[T]}
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).lazyZip
    Definition Classes
    Iterable
  83. def map[B](f: (T) => B): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  84. def map[B](f: (T) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  85. def maxBy[B](f: (T) => B)(implicit cmp: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  86. def maxBy[B](f: (T) => B)(implicit cmp: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  87. def maxByOption[B](f: (T) => B)(implicit cmp: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  88. def maxByOption[B](f: (T) => B)(implicit cmp: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  89. def minBy[B](f: (T) => B)(implicit cmp: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  90. def minBy[B](f: (T) => B)(implicit cmp: math.Ordering[B]): T
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  91. def minByOption[B](f: (T) => B)(implicit cmp: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  92. def minByOption[B](f: (T) => B)(implicit cmp: math.Ordering[B]): Option[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  93. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  94. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  95. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  96. final def mkString: String
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  97. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  98. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  99. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  100. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  101. def partition(p: (T) => Boolean): (WrappedSet[T], WrappedSet[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).partition(p)
    Definition Classes
    IterableOps
  102. def partition(p: (T) => Boolean): (collection.Iterable[T], collection.Iterable[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).partition(p)
    Definition Classes
    IterableOps
  103. def partitionMap[A1, A2](f: (T) => Either[A1, A2]): (WrappedSet[A1], WrappedSet[A2])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).partitionMap(f)
    Definition Classes
    IterableOps
  104. def partitionMap[A1, A2](f: (T) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).partitionMap(f)
    Definition Classes
    IterableOps
  105. def scanLeft[B](z: B)(op: (B, T) => B): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  106. def scanLeft[B](z: B)(op: (B, T) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  107. def scanRight[B](z: B)(op: (T, B) => B): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).scanRight(z)(op)
    Definition Classes
    IterableOps
  108. def scanRight[B](z: B)(op: (T, B) => B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).scanRight(z)(op)
    Definition Classes
    IterableOps
  109. def size: Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).size
    Definition Classes
    WrappedSet → IterableOnceOps
  110. def size: Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (set: IterableOps[T]).size
    Definition Classes
    IterableOnceOps
  111. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).sizeCompare(that)
    Definition Classes
    IterableOps
  112. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  113. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).sizeCompare(that)
    Definition Classes
    IterableOps
  114. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  115. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  116. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  117. def slice(from: Int, until: Int): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  118. def slice(from: Int, until: Int): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  119. def sliding(size: Int, step: Int): collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).sliding(size, step)
    Definition Classes
    IterableOps
  120. def sliding(size: Int): collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).sliding(size)
    Definition Classes
    IterableOps
  121. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).sliding(size, step)
    Definition Classes
    IterableOps
  122. def sliding(size: Int): collection.Iterator[collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).sliding(size)
    Definition Classes
    IterableOps
  123. def span(p: (T) => Boolean): (WrappedSet[T], WrappedSet[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  124. def span(p: (T) => Boolean): (collection.Iterable[T], collection.Iterable[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  125. def splitAt(n: Int): (WrappedSet[T], WrappedSet[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).splitAt(n)
    Definition Classes
    IterableOps → IterableOnceOps
  126. def splitAt(n: Int): (collection.Iterable[T], collection.Iterable[T])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).splitAt(n)
    Definition Classes
    IterableOps → IterableOnceOps
  127. def stepper[S <: Stepper[_]](implicit shape: StepperShape[T, S]): S
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).stepper(shape)
    Definition Classes
    IterableOnce
  128. def stepper[S <: Stepper[_]](implicit shape: StepperShape[T, S]): S
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).stepper(shape)
    Definition Classes
    IterableOnce
  129. def tail: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).tail
    Definition Classes
    IterableOps
  130. def tail: collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).tail
    Definition Classes
    IterableOps
  131. def tails: collection.Iterator[WrappedSet[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).tails
    Definition Classes
    IterableOps
  132. def tails: collection.Iterator[collection.Iterable[T]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).tails
    Definition Classes
    IterableOps
  133. def take(n: Int): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  134. def take(n: Int): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  135. def takeRight(n: Int): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).takeRight(n)
    Definition Classes
    IterableOps
  136. def takeRight(n: Int): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).takeRight(n)
    Definition Classes
    IterableOps
  137. def takeWhile(p: (T) => Boolean): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  138. def takeWhile(p: (T) => Boolean): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  139. def tapEach[U](f: (T) => U): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).tapEach(f)
    Definition Classes
    IterableOps → IterableOnceOps
  140. def tapEach[U](f: (T) => U): collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).tapEach(f)
    Definition Classes
    IterableOps → IterableOnceOps
  141. def to[C1](factory: Factory[T, C1]): C1
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).to(factory)
    Definition Classes
    IterableOnceOps
  142. def to[C1](factory: Factory[T, C1]): C1
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).to(factory)
    Definition Classes
    IterableOnceOps
  143. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  145. def toIndexedSeq: collection.immutable.IndexedSeq[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  146. def toIndexedSeq: collection.immutable.IndexedSeq[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  147. final def toIterable: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toIterable
    Definition Classes
    Iterable → IterableOps
  148. final def toIterable: IterableOps[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toIterable
    Definition Classes
    Iterable → IterableOps
  149. def toList: collection.immutable.List[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toList
    Definition Classes
    IterableOnceOps
  150. def toList: collection.immutable.List[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toList
    Definition Classes
    IterableOnceOps
  151. def toMap[K, V](implicit ev: <:<[T, (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toMap(ev)
    Definition Classes
    IterableOnceOps
  152. def toMap[K, V](implicit ev: <:<[T, (K, V)]): collection.immutable.Map[K, V]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toMap(ev)
    Definition Classes
    IterableOnceOps
  153. def toSeq: collection.immutable.Seq[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toSeq
    Definition Classes
    IterableOnceOps
  154. def toSeq: collection.immutable.Seq[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toSeq
    Definition Classes
    IterableOnceOps
  155. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toSet
    Definition Classes
    IterableOnceOps
  156. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toSet
    Definition Classes
    IterableOnceOps
  157. def toString(): String
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (set: WrappedSet[T]).toString()
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  158. def toString(): String
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (set: IterableOps[T]).toString()
    Definition Classes
    Iterable → AnyRef → Any
  159. def toVector: collection.immutable.Vector[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toVector
    Definition Classes
    IterableOnceOps
  160. def toVector: collection.immutable.Vector[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toVector
    Definition Classes
    IterableOnceOps
  161. def transpose[B](implicit asIterable: (T) => collection.Iterable[B]): WrappedSet[WrappedSet[B]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).transpose(asIterable)
    Definition Classes
    IterableOps
  162. def transpose[B](implicit asIterable: (T) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).transpose(asIterable)
    Definition Classes
    IterableOps
  163. def unzip[A1, A2](implicit asPair: (T) => (A1, A2)): (WrappedSet[A1], WrappedSet[A2])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).unzip(asPair)
    Definition Classes
    IterableOps
  164. def unzip[A1, A2](implicit asPair: (T) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).unzip(asPair)
    Definition Classes
    IterableOps
  165. def unzip3[A1, A2, A3](implicit asTriple: (T) => (A1, A2, A3)): (WrappedSet[A1], WrappedSet[A2], WrappedSet[A3])
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).unzip3(asTriple)
    Definition Classes
    IterableOps
  166. def unzip3[A1, A2, A3](implicit asTriple: (T) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).unzip3(asTriple)
    Definition Classes
    IterableOps
  167. def view: View[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).view
    Definition Classes
    IterableOps
  168. def view: View[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).view
    Definition Classes
    IterableOps
  169. def withFilter(p: (T) => Boolean): WithFilter[T, [_]WrappedSet[_]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).withFilter(p)
    Definition Classes
    IterableOps
  170. def withFilter(p: (T) => Boolean): WithFilter[T, collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).withFilter(p)
    Definition Classes
    IterableOps
  171. def zip[B](that: collection.IterableOnce[B]): WrappedSet[(T, B)]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).zip(that)
    Definition Classes
    IterableOps
  172. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(T, B)]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).zip(that)
    Definition Classes
    IterableOps
  173. def zipWithIndex: WrappedSet[(T, Int)]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps
  174. def zipWithIndex: collection.Iterable[(T, Int)]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def +(elem1: T, elem2: T, elems: T*): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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 >: A](that: collection.IterableOnce[B]): WrappedSet[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  4. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  5. final def +=(elem1: T, elem2: T, elems: T*): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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

  6. def -(elem1: T, elem2: T, elems: T*): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  7. def -(elem: T): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  8. def --(that: collection.IterableOnce[T]): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  9. def -=(elem1: T, elem2: T, elems: T*): WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    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

  10. final def /:[B](z: B)(op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  11. final def /:[B](z: B)(op: (B, T) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  12. final def :\[B](z: B)(op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  13. final def :\[B](z: B)(op: (T, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  14. def aggregate[B](z: => B)(seqop: (B, T) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  15. def aggregate[B](z: => B)(seqop: (B, T) => B, combop: (B, B) => B): B
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  16. def companion: IterableFactory[[_]WrappedSet[_]]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  17. def companion: IterableFactory[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  18. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  19. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  20. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  21. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  22. final def repr: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).repr
    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

  23. final def repr: collection.Iterable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).repr
    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

  24. final def retain(p: (T) => Boolean): Unit
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  25. def seq: WrappedSet[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  26. def seq: IterableOps[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  27. final def toIterator: collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  28. final def toIterator: collection.Iterator[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  29. final def toStream: collection.immutable.Stream[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  30. final def toStream: collection.immutable.Stream[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  31. final def toTraversable: collection.Traversable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  32. final def toTraversable: collection.Traversable[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  33. def view(from: Int, until: Int): View[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toWrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: WrappedSet[T]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  34. def view(from: Int, until: Int): View[T]
    Implicit
    This member is added by an implicit conversion from Set[T] toIterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (set: IterableOps[T]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

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

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion wrapSet fromSet[T] to WrappedSet[T]

Inherited by implicit conversion iterableOps fromSet[T] to IterableOps[T]

Inherited by implicit conversion any2stringadd fromSet[T] to any2stringadd[Set[T]]

Inherited by implicit conversion StringFormat fromSet[T] to StringFormat[Set[T]]

Inherited by implicit conversion Ensuring fromSet[T] to Ensuring[Set[T]]

Inherited by implicit conversion ArrowAssoc fromSet[T] to ArrowAssoc[Set[T]]

Ungrouped