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

class SparkeySet[T] extends SparkeySetBase[T]

Enhanced version of SparkeyReader that assumes the underlying Sparkey is encoded with a given Coder, but contains no values (i.e.: only used as an on-disk HashSet).

Source
SparkeySet.scala
Linear Supertypes
SparkeySetBase[T], 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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SparkeySet
  2. SparkeySetBase
  3. Set
  4. SetOps
  5. Set
  6. Equals
  7. SetOps
  8. Function1
  9. Iterable
  10. Iterable
  11. IterableFactoryDefaults
  12. IterableOps
  13. IterableOnceOps
  14. IterableOnce
  15. AnyRef
  16. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SparkeySet(sparkey: SparkeyReader, coder: Coder[T])

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

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

  12. final def toIterable: SparkeySet.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 SparkeySetBase[T]

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