Scala Standard Library 2.13.1 - scala.collection.SortedSet (original) (raw)

trait SortedSet[A] extends Set[A] with SortedSetOps[A, SortedSet, SortedSet[A]] with SortedSetFactoryDefaults[A, SortedSet, Set]

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. SortedSet
  2. SortedSetFactoryDefaults
  3. SortedSetOps
  4. SortedOps
  5. Set
  6. Equals
  7. SetOps
  8. Function1
  9. Iterable
  10. IterableFactoryDefaults
  11. IterableOps
  12. IterableOnceOps
  13. IterableOnce
  14. AnyRef
  15. 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 contains(elem: A): Boolean
  2. abstract def diff(that: Set[A]): SortedSet[A]
  3. abstract def iterator: Iterator[A]
  4. abstract def iteratorFrom(start: A): Iterator[A]
  5. abstract def ordering: Ordering[A]
  6. abstract def rangeImpl(from: Option[A], until: Option[A]): SortedSet[A]

Concrete Value Members

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

Deprecated Value Members

  1. def +(elem1: A, elem2: A, elems: A*): SortedSet[A]
  2. def +(elem: A): SortedSet[A]
  3. def ++:[B >: A](that: IterableOnce[B]): Set[B]
  4. def -(elem1: A, elem2: A, elems: A*): SortedSet[A]
  5. def -(elem: A): SortedSet[A]
  6. def --(that: IterableOnce[A]): SortedSet[A]
  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. final def from(from: A): SortedSet[A]
  28. def hasDefiniteSize: Boolean
  29. def isEmpty: Boolean
  30. def keysIteratorFrom(start: A): Iterator[A]
  31. def map[B](f: (A) => B): IterableOnce[B]
  32. def max(implicit ord: math.Ordering[A]): A
  33. def maxBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  34. def min(implicit ord: math.Ordering[A]): A
  35. def minBy[B](f: (A) => B)(implicit cmp: math.Ordering[B]): A
  36. def mkString: String
  37. def mkString(sep: String): String
  38. def mkString(start: String, sep: String, end: String): String
  39. def nonEmpty: Boolean
  40. def product(implicit num: math.Numeric[A]): A
  41. def reduce(f: (A, A) => A): A
  42. def reduceLeft(f: (A, A) => A): A
  43. def reduceLeftOption(f: (A, A) => A): Option[A]
  44. def reduceOption(f: (A, A) => A): Option[A]
  45. def reduceRight(f: (A, A) => A): A
  46. def reduceRightOption(f: (A, A) => A): Option[A]
  47. final def repr: SortedSet[A]
  48. def sameElements[B >: A](that: IterableOnce[B]): Boolean
  49. def seq: SortedSet.this.type
  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): SortedSet[A]
  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): SortedSet[A]
  70. def view(from: Int, until: Int): View[A]
  71. def withFilter(f: (A) => Boolean): Iterator[A]
  72. def →[B](y: B): (SortedSet[A], B)

Inherited from SortedSetFactoryDefaults[A, SortedSet, Set]

Inherited from SortedSetOps[A, SortedSet, SortedSet[A]]

Inherited from SortedOps[A, SortedSet[A]]

Inherited from Set[A]

Inherited from Equals

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

Inherited from (A) => Boolean

Inherited from Iterable[A]

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

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

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

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

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

Inherited by implicit conversion any2stringadd fromSortedSet[A] to any2stringadd[SortedSet[A]]

Inherited by implicit conversion StringFormat fromSortedSet[A] to StringFormat[SortedSet[A]]

Inherited by implicit conversion Ensuring fromSortedSet[A] to Ensuring[SortedSet[A]]

Inherited by implicit conversion ArrowAssoc fromSortedSet[A] to ArrowAssoc[SortedSet[A]]

Ungrouped