Scala Standard Library 2.13.1 - scala.collection.immutable.Set.Set4 (original) (raw)

final class Set4[A] extends AbstractSet[A] with StrictOptimizedIterableOps[A, Set, Set[A]] with Serializable

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. Set4
  2. Serializable
  3. StrictOptimizedIterableOps
  4. AbstractSet
  5. Set
  6. SetOps
  7. Iterable
  8. AbstractSet
  9. Set
  10. Equals
  11. SetOps
  12. Function1
  13. AbstractIterable
  14. Iterable
  15. IterableFactoryDefaults
  16. IterableOps
  17. IterableOnceOps
  18. IterableOnce
  19. AnyRef
  20. Any

Implicitly

  1. by iterableOnceExtensionMethods

  2. by any2stringadd

  3. by StringFormat

  4. by Ensuring

  5. by ArrowAssoc

  6. Hide All

  7. Show All

Visibility

  1. Public
  2. Protected

Value Members

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

Deprecated Value Members

  1. def +(elem1: A, elem2: A, elems: A*): Set[A]
  2. def ++:[B >: A](that: IterableOnce[B]): Set[B]
  3. def -(elem1: A, elem2: A, elems: A*): Set[A]
  4. def /:[B](z: B)(op: (B, A) => B): B
  5. final def /:[B](z: B)(op: (B, A) => B): B
  6. def :\[B](z: B)(op: (A, B) => B): B
  7. final def :\[B](z: B)(op: (A, B) => B): B
  8. def aggregate[B](z: => B)(seqop: (B, A) => B, combop: (B, B) => B): B
  9. def collectFirst[B](f: PartialFunction[A, B]): Option[B]
  10. def companion: IterableFactory[[_]Set[_]]
  11. def copyToBuffer(dest: Buffer[A]): Unit
  12. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
  13. def count(f: (A) => Boolean): Int
  14. def exists(f: (A) => Boolean): Boolean
  15. def filter(f: (A) => Boolean): Iterator[A]
  16. def find(p: (A) => Boolean): Option[A]
  17. def flatMap[B](f: (A) => IterableOnce[B]): IterableOnce[B]
  18. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  19. def foldLeft[B](z: B)(op: (B, A) => B): B
  20. def foldRight[B](z: B)(op: (A, B) => B): B
  21. def forall(f: (A) => Boolean): Boolean
  22. def foreach[U](f: (A) => U): Unit
  23. def hasDefiniteSize: Boolean
  24. def isEmpty: Boolean
  25. def map[B](f: (A) => B): IterableOnce[B]
  26. def max(implicit ord: math.Ordering[A]): A
  27. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  28. def min(implicit ord: math.Ordering[A]): A
  29. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  30. def mkString: String
  31. def mkString(sep: String): String
  32. def mkString(start: String, sep: String, end: String): String
  33. def nonEmpty: Boolean
  34. def product(implicit num: math.Numeric[A]): A
  35. def reduce(f: (A, A) => A): A
  36. def reduceLeft(f: (A, A) => A): A
  37. def reduceLeftOption(f: (A, A) => A): Option[A]
  38. def reduceOption(f: (A, A) => A): Option[A]
  39. def reduceRight(f: (A, A) => A): A
  40. def reduceRightOption(f: (A, A) => A): Option[A]
  41. final def repr: Set[A]
  42. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  43. def seq: Set4.this.type
  44. def size: Int
  45. def sum(implicit num: math.Numeric[A]): A
  46. def to[C1](factory: Factory[A, C1]): C1
  47. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  48. def toBuffer[B >: A]: Buffer[B]
  49. def toIndexedSeq: collection.IndexedSeq[A]
  50. final def toIterable: collection.Iterable[A]
  51. def toIterator: Iterator[A]
  52. final def toIterator: Iterator[A]
  53. def toList: List[A]
  54. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
  55. def toSeq: Seq[A]
  56. def toSet[B >: A]: Set[B]
  57. def toStream: Stream[A]
  58. final def toStream: Stream[A]
  59. final def toTraversable: collection.Traversable[A]
  60. final def toTraversable: collection.Traversable[A]
  61. def toVector: Vector[A]
  62. def view(from: Int, until: Int): View[A]
  63. def withFilter(f: (A) => Boolean): Iterator[A]
  64. def →[B](y: B): (Set4[A], B)

Inherited from java.io.Serializable

Inherited from StrictOptimizedIterableOps[A, Set, Set[A]]

Inherited from AbstractSet[A]

Inherited from Set[A]

Inherited from SetOps[A, Set, Set[A]]

Inherited from Iterable[A]

Inherited from collection.AbstractSet[A]

Inherited from collection.Set[A]

Inherited from Equals

Inherited from collection.SetOps[A, [_]Set[_], Set[A]]

Inherited from (A) => Boolean

Inherited from AbstractIterable[A]

Inherited from collection.Iterable[A]

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

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

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

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion any2stringadd fromSet4[A] to any2stringadd[Set4[A]]

Inherited by implicit conversion StringFormat fromSet4[A] to StringFormat[Set4[A]]

Inherited by implicit conversion Ensuring fromSet4[A] to Ensuring[Set4[A]]

Inherited by implicit conversion ArrowAssoc fromSet4[A] to ArrowAssoc[Set4[A]]

Ungrouped