Packages

trait ArraySet[A] extends AbstractSet[A] with SetOps[A, ArraySet, ArraySet[A]] with IterableFactoryDefaults[A, ArraySet] with ExtSetMethods[A]

A growable and compactable mutable.Set implementation based on Array and mutable.Set. It switches to the latter representation as soon as a given threshold for the number of elements is reached. Thus this implementation is a kind of mixture of scala.collection.mutable{ResizableArray, Set, HashSet} aimed at increasing the performance of sets having up to 200 to 250 elements.

Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArraySet
  2. ExtSetMethods
  3. FilterableSet
  4. AbstractSet
  5. Set
  6. SetOps
  7. Shrinkable
  8. Builder
  9. Growable
  10. Clearable
  11. Cloneable
  12. Cloneable
  13. Iterable
  14. AbstractSet
  15. Set
  16. Equals
  17. SetOps
  18. Function1
  19. AbstractIterable
  20. Iterable
  21. IterableFactoryDefaults
  22. IterableOps
  23. IterableOnceOps
  24. IterableOnce
  25. AnyRef
  26. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def +=!(elem: A): ArraySet.this.type

    Adds elem without checking for duplicates.

    Adds elem without checking for duplicates.

    Attributes
    protected[collection]
  2. abstract def addOne(elem: A): ArraySet.this.type
    Definition Classes
    Growable
  3. abstract def array: Array[A]
    Attributes
    protected[collection]
  4. abstract def capacity: Int

    For isArray == true, the current capacity of the internal array else 0.

  5. abstract def clear(): Unit
    Definition Classes
    Builder → Clearable
  6. abstract def compact(): Unit

    Compacts the current representation depending on ArraySet.Hints.compactUpToUsed.

  7. abstract def contains(elem: A): Boolean
    Definition Classes
    SetOps
  8. abstract def draw(random: Random): A

    Returns a random element of the set if it is nonEmpty otherwise throws IllegalArgumentException.

    Returns a random element of the set if it is nonEmpty otherwise throws IllegalArgumentException. Note that currently a near- but no true-uniform distribution is granted to allow for O(1) implementation.

    random

    a random generator; it is essential that random be instantiated by the caller just once for any sequence of calls

    Definition Classes
    ExtSetMethods
  9. abstract def find(elem: A): Option[A]
  10. abstract def findElem[B](toMatch: B, correspond: (A, B) => Boolean): A

    Finds an entry in the collection based on toMatch's hashCode and a correspondence function but not on the argument type.

    Finds an entry in the collection based on toMatch's hashCode and a correspondence function but not on the argument type.

    toMatch

    a value not necessarily of type A; the entry to be searched for must have the same hashCode and be equal to this argument

    correspond

    function returning whether a given entry corresponds to other

    returns

    the entry corresponding to toMatch or null if not contained

    Definition Classes
    ExtSetMethods
  11. abstract def hints: Hints

    The hints valid for this ArraySet!.

  12. abstract def isArray: Boolean

    Whether the internal representation is currently based on Array.

  13. abstract def iterator: Iterator[A]
    Definition Classes
    IterableOnce
  14. abstract def set: MSet[A]
    Attributes
    protected[collection]
  15. abstract def sorted(implicit ord: Ordering[A]): SortedSet[A]

    Sorts this ArraySet according to an Ordering in place.

    Sorts this ArraySet according to an Ordering in place.

    See also

    scala.collection.SeqLike

  16. abstract def subtractOne(elem: A): ArraySet.this.type
    Definition Classes
    Shrinkable
  17. abstract def upsert(elem: A): Boolean

    Updates or inserts elem.

    Updates or inserts elem.

    returns

    true if an insertion took place.

    Attributes
    protected[collection]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def &(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: IterableOnce[A]): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: A](suffix: IterableOnce[B]): ArraySet[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++=(xs: IterableOnce[A]): ArraySet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: A): ArraySet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def --=(xs: IterableOnce[A]): ArraySet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def -=(elem: A): ArraySet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. def ->[B](y: B): (ArraySet[A], B)
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toArrowAssoc[ArraySet[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  12. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def add(elem: A): Boolean
    Definition Classes
    SetOps
  14. def addAll(xs: IterableOnce[A]): ArraySet.this.type
    Definition Classes
    Growable
  15. final def addString(b: StringBuilder): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  16. final def addString(b: StringBuilder, sep: String): b.type
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  18. def andThen[A](g: (Boolean) => A): (A) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  19. final def apply(elem: A): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  22. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  23. def clone(): ArraySet[A]
    Definition Classes
    SetOps → Cloneable → AnyRef
  24. final def coll: ArraySet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  25. def collect[B](pf: PartialFunction[A, B]): ArraySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  26. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    IterableOnceOps
  27. def compose[A](g: (A) => A): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  28. def concat(that: IterableOnce[A]): ArraySet[A]
    Definition Classes
    SetOps
  29. def concat[B >: A](suffix: IterableOnce[B]): ArraySet[B]
    Definition Classes
    IterableOps
  30. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  31. def copyToArray[B >: A](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  32. def copyToArray[B >: A](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  33. def corresponds[B](that: IterableOnce[B])(p: (A, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  34. def count(p: (A) => Boolean): Int
    Definition Classes
    IterableOnceOps
  35. def diff(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps → SetOps
  36. def drop(n: Int): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  37. def dropRight(n: Int): ArraySet[A]
    Definition Classes
    IterableOps
  38. def dropWhile(p: (A) => Boolean): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def empty: ArraySet[A]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  40. def ensuring(cond: (ArraySet[A]) => Boolean, msg: => Any): ArraySet[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toEnsuring[ArraySet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  41. def ensuring(cond: (ArraySet[A]) => Boolean): ArraySet[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toEnsuring[ArraySet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  42. def ensuring(cond: Boolean, msg: => Any): ArraySet[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toEnsuring[ArraySet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  43. def ensuring(cond: Boolean): ArraySet[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toEnsuring[ArraySet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  46. def exists(p: (A) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  47. def filter(pred: (A) => Boolean): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def filterInPlace(p: (A) => Boolean): ArraySet.this.type
    Definition Classes
    SetOps
  49. def filterNot(pred: (A) => Boolean): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def find(p: (A) => Boolean): Option[A]
    Definition Classes
    IterableOnceOps
  51. def findElem(elem: A): Option[A]
    Definition Classes
    ExtSetMethods
  52. def flatMap[B](f: (A) => IterableOnce[B]): ArraySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def flatten[B](implicit asIterable: (A) => IterableOnce[B]): ArraySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  55. def foldLeft[B](z: B)(op: (B, A) => B): B
    Definition Classes
    IterableOnceOps
  56. def foldRight[B](z: B)(op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  57. def forall(p: (A) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  58. def foreach[U](f: (A) => U): Unit
    Definition Classes
    IterableOnceOps
  59. def fromSpecific(coll: IterableOnce[A]): ArraySet[A]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  60. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  61. def groupBy[K](f: (A) => K): Map[K, ArraySet[A]]
    Definition Classes
    IterableOps
  62. def groupMap[K, B](key: (A) => K)(f: (A) => B): Map[K, ArraySet[B]]
    Definition Classes
    IterableOps
  63. def groupMapReduce[K, B](key: (A) => K)(f: (A) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  64. def grouped(size: Int): Iterator[ArraySet[A]]
    Definition Classes
    IterableOps
  65. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  66. def head: A
    Definition Classes
    IterableOps
  67. def headOption: Option[A]
    Definition Classes
    IterableOps
  68. def init: ArraySet[A]
    Definition Classes
    IterableOps
  69. def inits: Iterator[ArraySet[A]]
    Definition Classes
    IterableOps
  70. def intersect(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps
  71. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  72. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  73. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  74. def iterableFactory: IterableFactory[ArraySet]
    Definition Classes
    ArraySet → Set → Iterable → Set → Iterable → IterableOps
  75. def knownSize: Int
    Definition Classes
    SetOps → Growable → IterableOnce
  76. def last: A
    Definition Classes
    IterableOps
  77. def lastOption: Option[A]
    Definition Classes
    IterableOps
  78. def lazyZip[B](that: Iterable[B]): LazyZip2[A, B, ArraySet.this.type]
    Definition Classes
    Iterable
  79. def map[B](f: (A) => B): ArraySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  80. def mapResult[NewTo](f: (ArraySet[A]) => NewTo): scala.collection.mutable.Builder[A, NewTo]
    Definition Classes
    Builder
  81. def max[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  82. def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  83. def maxByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  84. def maxOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  85. def min[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  86. def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOnceOps
  87. def minByOption[B](f: (A) => B)(implicit cmp: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  88. def minOption[B >: A](implicit ord: Ordering[B]): Option[A]
    Definition Classes
    IterableOnceOps
  89. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  90. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  91. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  92. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  93. def newSpecificBuilder: scala.collection.mutable.Builder[A, ArraySet[A]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  94. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  95. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  96. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  97. def partition(p: (A) => Boolean): (ArraySet[A], ArraySet[A])
    Definition Classes
    IterableOps
  98. def partitionMap[A1, A2](f: (A) => Either[A1, A2]): (ArraySet[A1], ArraySet[A2])
    Definition Classes
    IterableOps
  99. def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  100. def reduce[B >: A](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  101. def reduceLeft[B >: A](op: (B, A) => B): B
    Definition Classes
    IterableOnceOps
  102. def reduceLeftOption[B >: A](op: (B, A) => B): Option[B]
    Definition Classes
    IterableOnceOps
  103. def reduceOption[B >: A](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  104. def reduceRight[B >: A](op: (A, B) => B): B
    Definition Classes
    IterableOnceOps
  105. def reduceRightOption[B >: A](op: (A, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  106. def remove(elem: A): Boolean
    Definition Classes
    SetOps
  107. def result(): ArraySet[A]
    Definition Classes
    SetOps → Builder
  108. def reversed: Iterable[A]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  109. def scan[B >: A](z: B)(op: (B, B) => B): ArraySet[B]
    Definition Classes
    IterableOps
  110. def scanLeft[B](z: B)(op: (B, A) => B): ArraySet[B]
    Definition Classes
    IterableOps → IterableOnceOps
  111. def scanRight[B](z: B)(op: (A, B) => B): ArraySet[B]
    Definition Classes
    IterableOps
  112. def size: Int
    Definition Classes
    IterableOnceOps
  113. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  114. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  115. final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  116. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  117. final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
    Definition Classes
    Builder
  118. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  119. def slice(from: Int, until: Int): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  120. def sliding(size: Int, step: Int): Iterator[ArraySet[A]]
    Definition Classes
    IterableOps
  121. def sliding(size: Int): Iterator[ArraySet[A]]
    Definition Classes
    IterableOps
  122. def sortBy(f: (A) => A)(implicit ord: Ordering[A]): SortedSet[A]

    Sorts this ArraySet according to the Ordering which results from transforming an implicitly given Ordering with a transformation function in place.

    Sorts this ArraySet according to the Ordering which results from transforming an implicitly given Ordering with a transformation function in place.

    See also

    scala.collection.SeqLike

  123. def sortWith(lt: (A, A) => Boolean): SortedSet[A]

    Sorts this ArraySet according to a comparison function in place.

    Sorts this ArraySet according to a comparison function in place.

    See also

    scala.collection.SeqLike

  124. def span(p: (A) => Boolean): (ArraySet[A], ArraySet[A])
    Definition Classes
    IterableOps → IterableOnceOps
  125. def splitAt(n: Int): (ArraySet[A], ArraySet[A])
    Definition Classes
    IterableOps → IterableOnceOps
  126. def stepper[S <: Stepper[_]](implicit shape: StepperShape[A, S]): S
    Definition Classes
    IterableOnce
  127. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  128. def subsetOf(that: Set[A]): Boolean
    Definition Classes
    SetOps
  129. def subsets(): Iterator[ArraySet[A]]
    Definition Classes
    SetOps
  130. def subsets(len: Int): Iterator[ArraySet[A]]
    Definition Classes
    SetOps
  131. def subtractAll(xs: IterableOnce[A]): ArraySet.this.type
    Definition Classes
    Shrinkable
  132. def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  133. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  134. def tail: ArraySet[A]
    Definition Classes
    IterableOps
  135. def tails: Iterator[ArraySet[A]]
    Definition Classes
    IterableOps
  136. def take(n: Int): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  137. def takeRight(n: Int): ArraySet[A]
    Definition Classes
    IterableOps
  138. def takeWhile(p: (A) => Boolean): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def tapEach[U](f: (A) => U): ArraySet[A]
    Definition Classes
    IterableOps → IterableOnceOps
  140. def to[C1](factory: Factory[A, C1]): C1
    Definition Classes
    IterableOnceOps
  141. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  142. final def toBuffer[B >: A]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  143. def toIndexedSeq: IndexedSeq[A]
    Definition Classes
    IterableOnceOps
  144. def toList: List[A]
    Definition Classes
    IterableOnceOps
  145. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  146. def toSeq: Seq[A]
    Definition Classes
    IterableOnceOps
  147. def toSet[B >: A]: Set[B]
    Definition Classes
    IterableOnceOps
  148. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  149. def toVector: Vector[A]
    Definition Classes
    IterableOnceOps
  150. def transpose[B](implicit asIterable: (A) => Iterable[B]): ArraySet[ArraySet[B]]
    Definition Classes
    IterableOps
  151. final def union(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @inline()
  152. def unzip[A1, A2](implicit asPair: (A) => (A1, A2)): (ArraySet[A1], ArraySet[A2])
    Definition Classes
    IterableOps
  153. def unzip3[A1, A2, A3](implicit asTriple: (A) => (A1, A2, A3)): (ArraySet[A1], ArraySet[A2], ArraySet[A3])
    Definition Classes
    IterableOps
  154. def update(elem: A, included: Boolean): Unit
    Definition Classes
    SetOps
  155. def view: View[A]
    Definition Classes
    IterableOps
  156. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  157. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  158. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  159. def withFilter(p: (A) => Boolean): WithFilter[A, [_]ArraySet[_]]
    Definition Classes
    IterableOps
  160. def withSetFilter(p: (A) => Boolean): Set[A] with FilterableSet[A]
    Definition Classes
    FilterableSet
  161. def zip[B](that: IterableOnce[B]): ArraySet[(A, B)]
    Definition Classes
    IterableOps
  162. def zipAll[A1 >: A, B](that: Iterable[B], thisElem: A1, thatElem: B): ArraySet[(A1, B)]
    Definition Classes
    IterableOps
  163. def zipWithIndex: ArraySet[(A, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  164. final def |(that: Set[A]): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @inline()

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toany2stringadd[ArraySet[A]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: any2stringadd[ArraySet[A]]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

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

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

  2. def +(elem: A): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  3. def ++:[B >: A](that: IterableOnce[B]): ArraySet[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  4. final def +=(elem1: A, elem2: A, elems: A*): ArraySet.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

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

  5. def -(elem1: A, elem2: A, elems: A*): ArraySet[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

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

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

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

    (Since version 2.13.0) Consider requiring an immutable Set

  8. def -=(elem1: A, elem2: A, elems: A*): ArraySet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

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

  9. def /:[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

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

    (Since version 2.13.0) Use foldLeft instead of /:

  11. def :\[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

  14. def collectFirst[B](f: PartialFunction[A, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use iterableFactory instead

  16. def copyToBuffer(dest: Buffer[A]): Unit
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

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

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

  18. def count(f: (A) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  19. def exists(f: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  20. def filter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  22. def find(p: (A) => Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  23. def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  24. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  25. def foldLeft[B](z: B)(op: (B, A) => B): B
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  26. def foldRight[B](z: B)(op: (A, B) => B): B
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  27. def forall(f: (A) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  28. def foreach[U](f: (A) => U): Unit
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  29. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toStringFormat[ArraySet[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  30. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

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

  31. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  32. def map[B](f: (A) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  33. def max(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  34. def maxBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  35. def min(implicit ord: Ordering[A]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  36. def minBy[B](f: (A) => B)(implicit cmp: Ordering[B]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  37. def mkString: String
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  38. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  39. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  40. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  41. def product(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  42. def reduce(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  43. def reduceLeft(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  44. def reduceLeftOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  45. def reduceOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  46. def reduceRight(f: (A, A) => A): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  47. def reduceRightOption(f: (A, A) => A): Option[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  48. final def repr: ArraySet[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

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

    (Since version 2.13.0) Use filterInPlace instead

  50. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  51. def seq: ArraySet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  52. def size: Int
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  53. def sum(implicit num: Numeric[A]): A
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  54. def to[C1](factory: Factory[A, C1]): C1
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  55. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  56. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  57. def toIndexedSeq: IndexedSeq[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  58. final def toIterable: Iterable[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  59. final def toIterable: ArraySet.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  60. def toIterator: Iterator[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

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

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

  62. def toList: List[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  63. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  64. def toSeq: Seq[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  65. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  66. def toStream: Stream[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  68. final def toTraversable: Traversable[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

  69. final def toTraversable: Traversable[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  70. def toVector: Vector[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  72. def withFilter(f: (A) => Boolean): Iterator[A]
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toIterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (arraySet: IterableOnceExtensionMethods[A]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  73. def [B](y: B): (ArraySet[A], B)
    Implicit
    This member is added by an implicit conversion from ArraySet[A] toArrowAssoc[ArraySet[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from ExtSetMethods[A]

Inherited from FilterableSet[A]

Inherited from AbstractSet[A]

Inherited from Set[A]

Inherited from SetOps[A, [X]ArraySet[X], ArraySet[A]]

Inherited from Clearable

Inherited from Cloneable[ArraySet[A]]

Inherited from Cloneable

Inherited from Iterable[A]

Inherited from AbstractSet[A]

Inherited from Set[A]

Inherited from Equals

Inherited from SetOps[A, [_]ArraySet[_], ArraySet[A]]

Inherited from (A) => Boolean

Inherited from AbstractIterable[A]

Inherited from Iterable[A]

Inherited from IterableFactoryDefaults[A, [x]ArraySet[x]]

Inherited from IterableOps[A, [_]ArraySet[_], ArraySet[A]]

Inherited from IterableOnceOps[A, [_]ArraySet[_], ArraySet[A]]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromArraySet[A] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion any2stringadd fromArraySet[A] to any2stringadd[ArraySet[A]]

Inherited by implicit conversion StringFormat fromArraySet[A] to StringFormat[ArraySet[A]]

Inherited by implicit conversion Ensuring fromArraySet[A] to Ensuring[ArraySet[A]]

Inherited by implicit conversion ArrowAssoc fromArraySet[A] to ArrowAssoc[ArraySet[A]]

Ungrouped