Class/Object

scala.scalajs.js

Set

Related Docs: object Set | package js

Permalink

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

Instance Constructors

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

    Permalink
  2. new Set()

    Permalink

Value Members

  1. final def !=(arg0: scala.Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def &(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSetLike
  4. def &~(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSetLike
  5. def +(elem1: T, elem2: T, elems: T*): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  6. def +(elem: T): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → SetLike → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  7. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to any2stringadd[Set[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  8. def ++(xs: GenTraversableOnce[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new set. Use ++= to add elements to this set and return that set itself.

  9. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  10. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  11. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  12. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  13. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  14. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  15. def ++=(xs: collection.TraversableOnce[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  16. def +=(value: T): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike → Builder → Growable
  17. def +=(elem1: T, elem2: T, elems: T*): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Growable
  18. def -(elem1: T, elem2: T, elems: T*): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  19. def -(elem: T): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → SetLike → Subtractable → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  20. def --(xs: GenTraversableOnce[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new set. Use --= to remove elements from this set and return that set itself.

  21. def --=(xs: collection.TraversableOnce[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  22. def -=(key: T): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike → Shrinkable
  23. def -=(elem1: T, elem2: T, elems: T*): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  24. def ->[B](y: B): (Set[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to ArrowAssoc[Set[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  25. final def ==(arg0: scala.Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  26. def add(elem: T): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike
  27. def andThen[A](g: (Boolean) ⇒ A): (T) ⇒ A

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  28. def apply(key: T): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → GenSetLike → Function1
  29. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  30. def clear(): Unit

    Permalink
  31. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def compose[A](g: (A) ⇒ T): (A) ⇒ Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  33. def contains(value: T): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike → GenSetLike
  34. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  35. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  38. def copyToArray[B >: A](xs: scala.Array[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  40. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  41. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  42. def diff(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → GenSetLike
  43. def empty: WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike → GenericSetTemplate
  44. def ensuring(cond: (Set[T]) ⇒ Boolean, msg: ⇒ scala.Any): Set[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to Ensuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. def ensuring(cond: (Set[T]) ⇒ Boolean): Set[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to Ensuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  46. def ensuring(cond: Boolean, msg: ⇒ scala.Any): Set[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to Ensuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  47. def ensuring(cond: Boolean): Set[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to Ensuring[Set[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  48. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  49. def equals(arg0: scala.Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  50. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  51. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  53. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to StringFormat[Set[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  54. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  55. def hasOwnProperty(v: String): Boolean

    Permalink

    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
  56. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  57. def intersect(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSetLike
  58. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  59. def isPrototypeOf(v: Object): Boolean

    Permalink

    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
  60. def jsIterator(): Iterator[T]

    Permalink

    JavaScript Iterator for this Iterable.

    JavaScript Iterator for this Iterable.

    Definition Classes
    SetIterable
    Annotations
    @JSName( symbol = js.Symbol.iterator )
  61. def map[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike → FilterMonadic
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.

  62. def map[B, That](f: (T) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  63. def mapResult[NewTo](f: (WrappedSet[T]) ⇒ NewTo): Builder[T, NewTo]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  64. def max[B >: A](implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def max[B >: A](implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def min[B >: A](implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def min[B >: A](implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  68. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  69. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  70. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  71. def product[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def product[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def propertyIsEnumerable(v: String): Boolean

    Permalink

    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
  74. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduceLeft[B >: A](op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  77. def reduceLeft[B >: A](op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  78. def reduceLeftOption[B >: A](op: (B, T) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceLeftOption[B >: A](op: (B, T) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def reduceRight[B >: A](op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  83. def reduceRight[B >: A](op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  84. def reduceRightOption[B >: A](op: (T, B) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def reduceRightOption[B >: A](op: (T, B) ⇒ B): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def remove(elem: T): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedSet → SetLike
  87. def result(): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → Builder
  88. def retain(p: (T) ⇒ Boolean): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike
  89. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  90. def sameElements[B >: A](that: GenIterable[B]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  91. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  92. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def size: Int

    Permalink
  94. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  95. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  96. def sizeHint(size: Int): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  97. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  98. def subsetOf(that: GenSet[T]): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSetLike
  99. def subsets(): collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike
  100. def subsets(len: Int): collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike
  101. def sum[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def sum[B >: A](implicit num: Numeric[B]): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  104. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  107. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  108. def union(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → GenSetLike
  109. def update(elem: T, included: Boolean): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike
  110. def valueOf(): scala.Any

    Permalink
    Definition Classes
    Object
  111. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  112. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  113. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  114. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedSet[T], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  115. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[T], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  116. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedSet[T], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  117. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[T], (A1, B), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  118. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedSet[T], (A1, Int), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  119. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[collection.Iterable[T], (A1, Int), That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[T] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  120. def |(that: GenSet[T]): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSetLike
  121. def [B](y: B): (Set[T], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to ArrowAssoc[Set[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def /:[B](z: B)(op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  2. def /:[B](z: B)(op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  3. def :\[B](z: B)(op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  4. def :\[B](z: B)(op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  5. def addString(b: StringBuilder): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce
  6. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce
  7. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce
  8. def addString(b: StringBuilder): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce
  9. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce
  10. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce
  11. def aggregate[B](z: ⇒ B)(seqop: (B, T) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, T) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  13. def canEqual(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  14. def canEqual(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  15. def clear(): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → Builder → Growable → Clearable
  16. def clone(): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → Cloneable → AnyRef
  17. def collect[B, That](pf: PartialFunction[T, B])(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  18. def collect[B, That](pf: PartialFunction[T, B])(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  19. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce
  20. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce
  21. def companion: GenericCompanion[collection.mutable.Set]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    Set → Set → GenSet → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  22. def companion: GenericCompanion[collection.Iterable]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  23. def count(p: (T) ⇒ Boolean): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  24. def count(p: (T) ⇒ Boolean): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  25. def drop(n: Int): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike
  26. def drop(n: Int): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  27. def dropRight(n: Int): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike
  28. def dropRight(n: Int): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike
  29. def dropWhile(p: (T) ⇒ Boolean): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  30. def dropWhile(p: (T) ⇒ Boolean): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  31. def equals(that: scala.Any): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    GenSetLike → Equals → AnyRef → Any
  32. def exists(p: (T) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  33. def exists(p: (T) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def filter(p: (T) ⇒ Boolean): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def filter(p: (T) ⇒ Boolean): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  36. def filterNot(p: (T) ⇒ Boolean): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  37. def filterNot(p: (T) ⇒ Boolean): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def find(p: (T) ⇒ Boolean): Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  39. def find(p: (T) ⇒ Boolean): Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  40. def flatMap[B, That](f: (T) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  41. def flatMap[B, That](f: (T) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  42. def flatten[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): collection.mutable.Set[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  43. def flatten[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): collection.Iterable[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  44. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, T) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableOnce → GenTraversableOnce
  47. def foldRight[B](z: B)(op: (T, B) ⇒ B): B

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableOnce → GenTraversableOnce
  48. def forall(p: (T) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def forall(p: (T) ⇒ Boolean): Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  50. def foreach[U](f: (T) ⇒ U): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  51. def foreach[U](f: (T) ⇒ U): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  52. def genericBuilder[B]: Builder[B, collection.mutable.Set[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  53. def genericBuilder[B]: Builder[B, collection.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  54. def groupBy[K](f: (T) ⇒ K): collection.immutable.Map[K, WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  55. def groupBy[K](f: (T) ⇒ K): collection.immutable.Map[K, collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  56. def grouped(size: Int): collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike
  57. def grouped(size: Int): collection.Iterator[collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike
  58. def hasDefiniteSize: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → TraversableOnce → GenTraversableOnce
  59. def hasDefiniteSize: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. def hashCode(): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    GenSetLike → AnyRef → Any
  61. def head: T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike
  62. def head: T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  63. def headOption: Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  64. def headOption: Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  65. def init: WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  66. def init: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  67. def inits: collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike
  68. def inits: collection.Iterator[collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike
  69. def isEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  70. def isEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  71. final def isTraversableAgain: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike → GenTraversableOnce
  72. final def isTraversableAgain: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike → GenTraversableOnce
  73. def iterator: collection.Iterator[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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 → GenSetLike → IterableLike → GenIterableLike
  74. def iterator: collection.Iterator[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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 → IterableLike → GenIterableLike
    Annotations
    @inline()
  75. def last: T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  76. def last: T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  77. def lastOption: Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  78. def lastOption: Option[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  79. def maxBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  80. def maxBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  81. def minBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  82. def minBy[B](f: (T) ⇒ B)(implicit cmp: Ordering[B]): T

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  83. def mkString: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  84. def mkString(sep: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  85. def mkString(start: String, sep: String, end: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  86. def mkString: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  87. def mkString(sep: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  88. def mkString(start: String, sep: String, end: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  89. def nonEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  90. def nonEmpty: Boolean

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  91. def par: ParSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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]).par
    Definition Classes
    Parallelizable
  92. def par: ParIterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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]).par
    Definition Classes
    Parallelizable
  93. def partition(p: (T) ⇒ Boolean): (WrappedSet[T], WrappedSet[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  94. def partition(p: (T) ⇒ Boolean): (collection.Iterable[T], collection.Iterable[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  95. def repr: WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  96. def repr: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  97. def scanLeft[B, That](z: B)(op: (B, T) ⇒ B)(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def scanLeft[B, That](z: B)(op: (B, T) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanRight[B, That](z: B)(op: (T, B) ⇒ B)(implicit bf: CanBuildFrom[WrappedSet[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  100. def scanRight[B, That](z: B)(op: (T, B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[T], B, That]): That

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  101. def seq: collection.mutable.Set[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    Set → Set → GenSet → GenSetLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  102. def seq: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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 → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  103. def size(): Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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 → GenTraversableLike → TraversableOnce → GenTraversableOnce
  104. def size: Int

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  105. def slice(from: Int, until: Int): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike
  106. def slice(from: Int, until: Int): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  107. def sliding(size: Int, step: Int): collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike
  108. def sliding(size: Int): collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike
  109. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike
  110. def sliding(size: Int): collection.Iterator[collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike
  111. def span(p: (T) ⇒ Boolean): (WrappedSet[T], WrappedSet[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  112. def span(p: (T) ⇒ Boolean): (collection.Iterable[T], collection.Iterable[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  113. def splitAt(n: Int): (WrappedSet[T], WrappedSet[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  114. def splitAt(n: Int): (collection.Iterable[T], collection.Iterable[T])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  115. def stringPrefix: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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]).stringPrefix
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike
  116. def stringPrefix: String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def tail: WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → GenTraversableLike
  118. def tail: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → GenTraversableLike
  119. def tails: collection.Iterator[WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike
  120. def tails: collection.Iterator[collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike
  121. def take(n: Int): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike
  122. def take(n: Int): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  123. def takeRight(n: Int): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike
  124. def takeRight(n: Int): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike
  125. def takeWhile(p: (T) ⇒ Boolean): WrappedSet[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableLike
  126. def takeWhile(p: (T) ⇒ Boolean): collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  127. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, T, Col[T]]): Col[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  128. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, T, Col[T]]): Col[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  129. def toBuffer[A1 >: A]: Buffer[A1]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → TraversableOnce → GenTraversableOnce
  130. def toBuffer[B >: A]: Buffer[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  131. def toIndexedSeq: collection.immutable.IndexedSeq[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  132. def toIndexedSeq: collection.immutable.IndexedSeq[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  133. def toIterable: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableOnce → GenTraversableOnce
  134. def toIterable: collection.Iterable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableOnce → GenTraversableOnce
  135. def toIterator: collection.Iterator[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  136. def toIterator: collection.Iterator[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  137. def toList: List[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  138. def toList: List[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  139. def toMap[T, U](implicit ev: <:<[T, (T, U)]): collection.immutable.Map[T, U]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  140. def toMap[T, U](implicit ev: <:<[T, (T, U)]): collection.immutable.Map[T, U]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  141. def toSeq: collection.Seq[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → TraversableOnce → GenTraversableOnce
  142. def toSeq: collection.Seq[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  143. def toSet[B >: A]: collection.immutable.Set[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  144. def toSet[B >: A]: collection.immutable.Set[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  145. def toStream: collection.immutable.Stream[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike → GenTraversableOnce
  146. def toStream: collection.immutable.Stream[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike → GenTraversableOnce
  147. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    SetLike → Function1 → TraversableLike → AnyRef → Any
  148. def toString(): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → Any
  149. def toTraversable: collection.Traversable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  150. def toTraversable: collection.Traversable[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  151. def toVector: Vector[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableOnce → GenTraversableOnce
  152. def toVector: Vector[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableOnce → GenTraversableOnce
  153. def transpose[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): collection.mutable.Set[collection.mutable.Set[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  154. def transpose[B](implicit asTraversable: (T) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  155. def unzip[A1, A2](implicit asPair: (T) ⇒ (A1, A2)): (collection.mutable.Set[A1], collection.mutable.Set[A2])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    GenericTraversableTemplate
  156. def unzip[A1, A2](implicit asPair: (T) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    GenericTraversableTemplate
  157. def unzip3[A1, A2, A3](implicit asTriple: (T) ⇒ (A1, A2, A3)): (collection.mutable.Set[A1], collection.mutable.Set[A2], collection.mutable.Set[A3])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    GenericTraversableTemplate
  158. def unzip3[A1, A2, A3](implicit asTriple: (T) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    GenericTraversableTemplate
  159. def view(from: Int, until: Int): IterableView[T, WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike
  160. def view: IterableView[T, WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    IterableLike → TraversableLike
  161. def view(from: Int, until: Int): IterableView[T, collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike
  162. def view: IterableView[T, collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    IterableLike → TraversableLike
  163. def withFilter(p: (T) ⇒ Boolean): FilterMonadic[T, WrappedSet[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[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
    TraversableLike → FilterMonadic
  164. def withFilter(p: (T) ⇒ Boolean): FilterMonadic[T, collection.Iterable[T]]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to IterableOps[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
    TraversableLike → FilterMonadic

Deprecated Value Members

  1. def <<(cmd: Message[T]): Unit

    Permalink
    Implicit information
    This member is added by an implicit conversion from Set[T] to WrappedSet[T] performed by method wrapSet in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SetLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Scripting is deprecated.

Inherited from Iterable[T]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion wrapSet from Set[T] to WrappedSet[T]

Inherited by implicit conversion iterableOps from Set[T] to IterableOps[T]

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

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

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

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

Ungrouped