Packages

  • package root
    Definition Classes
    root
  • package com
    Definition Classes
    root
  • package spotify
    Definition Classes
    com
  • package scio
    Definition Classes
    spotify
  • package extra
    Definition Classes
    scio
  • package sparkey

    Main package for Sparkey side input APIs.

    Main package for Sparkey side input APIs. Import all.

    import com.spotify.scio.extra.sparkey._

    To save an SCollection[(String, String)] to a Sparkey fileset:

    val s = sc.parallelize(Seq("a" -> "one", "b" -> "two"))
    s.saveAsSparkey("gs://<bucket>/<path>/<sparkey-prefix>")
    
    // with multiple shards, sharded by MurmurHash3 of the key
    s.saveAsSparkey("gs://<bucket>/<path>/<sparkey-dir>", numShards=2)

    A previously-saved sparkey can be loaded as a side input:

    sc.sparkeySideInput("gs://<bucket>/<path>/<sparkey-prefix>")

    A sharded collection of Sparkey files can also be used as a side input by specifying a glob path:

    sc.sparkeySideInput("gs://<bucket>/<path>/<sparkey-dir>/part-*")

    When the sparkey is needed only temporarily, the save step can be elided:

    val side: SideInput[SparkeyReader] = sc
      .parallelize(Seq("a" -> "one", "b" -> "two"))
      .asSparkeySideInput

    SparkeyReader can be used like a lookup table in a side input operation:

    val main: SCollection[String] = sc.parallelize(Seq("a", "b", "c"))
    val side: SideInput[SparkeyReader] = sc
      .parallelize(Seq("a" -> "one", "b" -> "two"))
      .asSparkeySideInput
    
    main.withSideInputs(side)
      .map { (x, s) =>
        s(side).getOrElse(x, "unknown")
      }

    A SparkeyMap can store any types of keys and values, but can only be used as a SideInput:

    val main: SCollection[String] = sc.parallelize(Seq("a", "b", "c"))
    val side: SideInput[SparkeyMap[String, Int]] = sc
      .parallelize(Seq("a" -> 1, "b" -> 2, "c" -> 3))
      .asLargeMapSideInput()
    
    val objects: SCollection[MyObject] = main
      .withSideInputs(side)
      .map { (x, s) => s(side).get(x) }
      .toSCollection

    To read a static Sparkey collection and use it as a typed SideInput, use TypedSparkeyReader. TypedSparkeyReader can also accept a Caffeine cache to reduce IO and deserialization load:

    val main: SCollection[String] = sc.parallelize(Seq("a", "b", "c"))
    val cache: Cache[String, MyObject] = ...
    val side: SideInput[TypedSparkeyReader[MyObject]] = sc
      .typedSparkeySideInput("gs://<bucket>/<path>/<sparkey-prefix>", MyObject.decode, cache)
    
    val objects: SCollection[MyObject] = main
      .withSideInputs(side)
      .map { (x, s) => s(side).get(x) }
      .toSCollection
    Definition Classes
    extra
  • package instances
    Definition Classes
    sparkey
  • CachedStringSparkeyReader
  • MockByteArrayEntry
  • MockByteArraySparkeyReader
  • MockEntry
  • MockSparkeyReader
  • MockStringEntry
  • MockStringSparkeyReader
  • ShardedSparkeyReader
  • SparkeyMap
  • SparkeyMapBase
  • SparkeyReaderInstances
  • SparkeySet
  • SparkeySetBase
  • StringSparkeyReader
  • TypedSparkeyReader

trait SparkeySetBase[T] extends Set[T]

Source
SparkeySetBase.scala
Linear Supertypes
Set[T], SetOps[T, Set, Set[T]], Set[T], Equals, SetOps[T, [_]Set[_], Set[T]], (T) => Boolean, Iterable[T], Iterable[T], IterableFactoryDefaults[T, [x]Set[x]], IterableOps[T, [_]Set[_], Set[T]], IterableOnceOps[T, [_]Set[_], Set[T]], IterableOnce[T], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SparkeySetBase
  2. Set
  3. SetOps
  4. Set
  5. Equals
  6. SetOps
  7. Function1
  8. Iterable
  9. Iterable
  10. IterableFactoryDefaults
  11. IterableOps
  12. IterableOnceOps
  13. IterableOnce
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def contains(elem: T): Boolean
    Definition Classes
    SetOps
  2. abstract def iterator: Iterator[T]
    Definition Classes
    IterableOnce

Concrete Value Members

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

Deprecated Value Members

  1. def +(elem1: T, elem2: T, elems: T*): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def ++:[B >: T](that: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  3. def -(elem1: T, elem2: T, elems: T*): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use &- with an explicit collection argument instead of - with varargs

  4. final def /:[B](z: B)(op: (B, T) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  5. final def :\[B](z: B)(op: (T, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  6. def aggregate[B](z: => B)(seqop: (B, T) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) For sequential collections, prefer foldLeft(z)(seqop). For parallel collections, use ParIterableLike#aggregate.

  7. def companion: IterableFactory[[_]Set[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  8. final def copyToBuffer[B >: T](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  9. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  10. final def repr: Set[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  11. def seq: SparkeySetBase.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  12. final def toIterable: SparkeySetBase.this.type
    Definition Classes
    Iterable → IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  13. final def toIterator: Iterator[T]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  14. final def toStream: Stream[T]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  15. final def toTraversable: Traversable[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to toList or toSeq, but it doesn't copy non-immutable collections

  16. def view(from: Int, until: Int): View[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Set[T]

Inherited from SetOps[T, Set, Set[T]]

Inherited from Set[T]

Inherited from Equals

Inherited from SetOps[T, [_]Set[_], Set[T]]

Inherited from (T) => Boolean

Inherited from Iterable[T]

Inherited from Iterable[T]

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

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

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

Inherited from IterableOnce[T]

Inherited from AnyRef

Inherited from Any

Ungrouped