Scala Standard Library 2.13.1 - scala.collection.immutable.MapOps.ImmutableKeySet (original) (raw)

class ImmutableKeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable

Ordering

  1. Alphabetic
  2. By Inheritance

Inherited

  1. ImmutableKeySet
  2. DefaultSerializable
  3. Serializable
  4. GenKeySet
  5. AbstractSet
  6. Set
  7. SetOps
  8. Iterable
  9. AbstractSet
  10. Set
  11. Equals
  12. SetOps
  13. Function1
  14. AbstractIterable
  15. Iterable
  16. IterableFactoryDefaults
  17. IterableOps
  18. IterableOnceOps
  19. IterableOnce
  20. AnyRef
  21. 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 ImmutableKeySet()

Value Members

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

Deprecated Value Members

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

Ungrouped