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

class KeySortedSet extends SortedSet[K] with GenKeySet with GenKeySortedSet

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. KeySortedSet
  2. GenKeySortedSet
  3. GenKeySet
  4. SortedSet
  5. SortedSetFactoryDefaults
  6. SortedSetOps
  7. SortedOps
  8. Set
  9. Equals
  10. SetOps
  11. Function1
  12. Iterable
  13. IterableFactoryDefaults
  14. IterableOps
  15. IterableOnceOps
  16. IterableOnce
  17. AnyRef
  18. 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

Instance Constructors

  1. new KeySortedSet()

Value Members

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

Deprecated Value Members

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

Inherited from GenKeySortedSet

Inherited from SortedMapOps.GenKeySet

Inherited from SortedSet[K]

Inherited from SortedSetFactoryDefaults[K, SortedSet, Set]

Inherited from SortedSetOps[K, SortedSet, SortedSet[K]]

Inherited from SortedOps[K, SortedSet[K]]

Inherited from Set[K]

Inherited from Equals

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

Inherited from (K) => Boolean

Inherited from Iterable[K]

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

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

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

Inherited from IterableOnce[K]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromKeySortedSet to IterableOnceExtensionMethods[K]

Inherited by implicit conversion any2stringadd fromKeySortedSet to any2stringadd[KeySortedSet]

Inherited by implicit conversion StringFormat fromKeySortedSet to StringFormat[KeySortedSet]

Inherited by implicit conversion Ensuring fromKeySortedSet to Ensuring[KeySortedSet]

Inherited by implicit conversion ArrowAssoc fromKeySortedSet to ArrowAssoc[KeySortedSet]

Ungrouped