Scala Standard Library 2.13.15 - scala.collection.SortedSetOps (original) (raw)

trait SortedSetOps[A, +CC[X] <: SortedSet[X], +C <: SortedSetOps[A, CC, C]] extends SetOps[A, Set, C] with SortedOps[A, C]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. SortedSetOps
  2. SortedOps
  3. SetOps
  4. Function1
  5. IterableOps
  6. IterableOnceOps
  7. IterableOnce
  8. AnyRef
  9. 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

Abstract Value Members

  1. abstract def coll: C
  2. abstract def contains(elem: A): Boolean
  3. abstract def diff(that: Set[A]): C
  4. abstract def fromSpecific(coll: IterableOnce[A]): C
  5. abstract def iterableFactory: IterableFactory[Set]
  6. abstract def iterator: Iterator[A]
  7. abstract def iteratorFrom(start: A): Iterator[A]
  8. abstract def newSpecificBuilder: Builder[A, C]
  9. abstract def ordering: Ordering[A]
  10. abstract def rangeImpl(from: Option[A], until: Option[A]): C
  11. abstract def sortedIterableFactory: SortedIterableFactory[CC]
  12. abstract def unsorted: Set[A]
  13. abstract def toIterable: Iterable[A]

Concrete Value Members

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

Deprecated Value Members

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

Inherited from SortedOps[A, C]

Inherited from SetOps[A, Set, C]

Inherited from (A) => Boolean

Inherited from IterableOps[A, Set, C]

Inherited from IterableOnceOps[A, Set, C]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromSortedSetOps[A, CC, C] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion any2stringadd fromSortedSetOps[A, CC, C] to any2stringadd[SortedSetOps[A, CC, C]]

Inherited by implicit conversion StringFormat fromSortedSetOps[A, CC, C] to StringFormat[SortedSetOps[A, CC, C]]

Inherited by implicit conversion Ensuring fromSortedSetOps[A, CC, C] to Ensuring[SortedSetOps[A, CC, C]]

Inherited by implicit conversion ArrowAssoc fromSortedSetOps[A, CC, C] to ArrowAssoc[SortedSetOps[A, CC, C]]

Ungrouped