Packages

  • package root
    Definition Classes
    root
  • package io
    Definition Classes
    root
  • package github
    Definition Classes
    io
  • package memo33
    Definition Classes
    github
  • package scalaenum
    Definition Classes
    memo33
  • abstract class Enum extends Serializable

    Defines a finite set of values specific to the enumeration.

    Defines a finite set of values specific to the enumeration. Typically these values enumerate all possible forms something can take and provide a lightweight alternative to case classes.

    Each call to a Value method adds a new unique value to the enumeration. To be accessible, these values are usually defined as val members of the enumeration.

    All values in an enumeration share a common, unique type defined as the abstract Value type member of the enumeration (Value selected on the stable identifier path of the enumeration instance). Besides, in contrast to Scala's built-in Enumeration, the Value type member can be extended in subclasses, such that it is possible to mix-in traits, for example. In this case, make sure to make the constructor of Value private. Example:

    // adding methods to Value
    class Day private extends Day.Val {
      def isWorkingDay: Boolean = this != Day.Saturday && this != Day.Sunday
    }
    object Day extends Enum {
      type Value = Day
      val Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday = new Day
    }
    
    // usage:
    Day.values filter (_.isWorkingDay) foreach println
    // output:
    // Monday
    // Tuesday
    // Wednesday
    // Thursday
    // Friday
    Definition Classes
    scalaenum
    Annotations
    @SerialVersionUID()
    Example:
    1. // Example of adding attributes to an enumeration by extending the Enumeration.Val class
      object Planet extends Enumeration {
        protected case class PlanetVal(mass: Double, radius: Double) extends super.Val {
          def surfaceGravity: Double = Planet.G * mass / (radius * radius)
          def surfaceWeight(otherMass: Double): Double = otherMass * surfaceGravity
        }
        import scala.language.implicitConversions
        implicit def valueToPlanetVal(x: Value): PlanetVal = x.asInstanceOf[PlanetVal]
      
        val G: Double = 6.67300E-11
        val Mercury = PlanetVal(3.303e+23, 2.4397e6)
        val Venus   = PlanetVal(4.869e+24, 6.0518e6)
        val Earth   = PlanetVal(5.976e+24, 6.37814e6)
        val Mars    = PlanetVal(6.421e+23, 3.3972e6)
        val Jupiter = PlanetVal(1.9e+27, 7.1492e7)
        val Saturn  = PlanetVal(5.688e+26, 6.0268e7)
        val Uranus  = PlanetVal(8.686e+25, 2.5559e7)
        val Neptune = PlanetVal(1.024e+26, 2.4746e7)
      }
      
      println(Planet.values.filter(_.radius > 7.0e6))
      // output:
      // Planet.ValueSet(Jupiter, Saturn, Uranus, Neptune)
  • Val
  • Value
  • ValueOrdering
  • ValueSet

class ValueSet extends AbstractSet[Value] with SortedSet[Value] with SortedSetOps[Value, SortedSet, ValueSet] with StrictOptimizedIterableOps[Value, Set, ValueSet] with Serializable

A class for sets of values. Iterating through this set will yield values in increasing order of their ids.

Annotations
@SerialVersionUID()
Linear Supertypes
Serializable, StrictOptimizedIterableOps[Value, Set, ValueSet], SortedSet[Value], SortedSetOps[Value, SortedSet, ValueSet], SortedSet[Value], SortedSetFactoryDefaults[Value, [X]SortedSet[X], [x]Set[x]], SortedSetOps[Value, [X]SortedSet[X], ValueSet], SortedOps[Value, ValueSet], AbstractSet[Value], Set[Value], SetOps[Value, Set, ValueSet], Iterable[Value], AbstractSet[Value], Set[Value], Equals, SetOps[Value, [_]Set[_], ValueSet], (Value) => Boolean, AbstractIterable[Value], Iterable[Value], IterableFactoryDefaults[Value, [x]Set[x]], IterableOps[Value, [_]Set[_], ValueSet], IterableOnceOps[Value, [_]Set[_], ValueSet], IterableOnce[Value], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueSet
  2. Serializable
  3. StrictOptimizedIterableOps
  4. SortedSet
  5. SortedSetOps
  6. SortedSet
  7. SortedSetFactoryDefaults
  8. SortedSetOps
  9. SortedOps
  10. AbstractSet
  11. Set
  12. SetOps
  13. Iterable
  14. AbstractSet
  15. Set
  16. Equals
  17. SetOps
  18. Function1
  19. AbstractIterable
  20. Iterable
  21. IterableFactoryDefaults
  22. IterableOps
  23. IterableOnceOps
  24. IterableOnce
  25. AnyRef
  26. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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[Value]): ValueSet
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[Value]): ValueSet
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def +(elem: Value): ValueSet
    Definition Classes
    SetOps → SetOps
  6. final def ++(that: IterableOnce[Value]): ValueSet
    Definition Classes
    SetOps
    Annotations
    @inline()
  7. final def ++[B >: Value](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  8. final def -(elem: Value): ValueSet
    Definition Classes
    SetOps → SetOps
    Annotations
    @inline()
  9. final def --(that: IterableOnce[Value]): ValueSet
    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): (Value) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  15. final def apply(elem: Value): 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
    Definition Classes
    ValueSet → Iterable
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. final def coll: ValueSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  21. def collect[B](pf: PartialFunction[Value, B])(implicit ev: Ordering[B]): SortedSet[B]
    Definition Classes
    ValueSet → SortedSetOps
  22. def collect[B](pf: PartialFunction[Value, B]): Set[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  23. def collectFirst[B](pf: PartialFunction[Value, B]): Option[B]
    Definition Classes
    IterableOnceOps
  24. def compose[A](g: (A) => Value): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  25. def concat(that: IterableOnce[Value]): ValueSet
    Definition Classes
    SetOps
  26. def concat[B >: Value](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  27. def contains(v: Value): Boolean
    Definition Classes
    ValueSet → SetOps
  28. def copyToArray[B >: Value](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  29. def copyToArray[B >: Value](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  30. def copyToArray[B >: Value](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  31. def corresponds[B](that: IterableOnce[B])(p: (Value, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  32. def count(p: (Value) => Boolean): Int
    Definition Classes
    IterableOnceOps
  33. def diff(that: Set[Value]): ValueSet
    Definition Classes
    SetOps → SetOps
  34. def drop(n: Int): ValueSet
    Definition Classes
    IterableOps → IterableOnceOps
  35. def dropRight(n: Int): ValueSet
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  36. def dropWhile(p: (Value) => Boolean): ValueSet
    Definition Classes
    IterableOps → IterableOnceOps
  37. def empty: ValueSet
    Definition Classes
    ValueSet → SortedSetFactoryDefaults → IterableFactoryDefaults → IterableOps
  38. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def equals(that: Any): Boolean
    Definition Classes
    SortedSet → Set → Equals → AnyRef → Any
  40. def excl(value: Value): ValueSet
    Definition Classes
    ValueSet → SetOps
  41. def exists(p: (Value) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  42. def filter(pred: (Value) => Boolean): ValueSet
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  43. def filterImpl(pred: (Value) => Boolean, isFlipped: Boolean): ValueSet
    Attributes
    protected[collection]
    Definition Classes
    StrictOptimizedIterableOps
  44. def filterNot(pred: (Value) => Boolean): ValueSet
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  45. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  46. def find(p: (Value) => Boolean): Option[Value]
    Definition Classes
    IterableOnceOps
  47. def firstKey: Value
    Definition Classes
    SortedSetOps → SortedOps
  48. def flatMap[B](f: (Value) => IterableOnce[B])(implicit ev: Ordering[B]): SortedSet[B]
    Definition Classes
    ValueSet → SortedSetOps
  49. def flatMap(f: (Value) => IterableOnce[Value]): ValueSet
  50. def flatMap[B](f: (Value) => IterableOnce[B]): Set[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  51. def flatten[B](implicit toIterableOnce: (Value) => IterableOnce[B]): Set[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  52. def fold[A1 >: Value](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  53. def foldLeft[B](z: B)(op: (B, Value) => B): B
    Definition Classes
    IterableOnceOps
  54. def foldRight[B](z: B)(op: (Value, B) => B): B
    Definition Classes
    IterableOnceOps
  55. def forall(p: (Value) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  56. def foreach[U](f: (Value) => U): Unit
    Definition Classes
    IterableOnceOps
  57. def fromSpecific(coll: IterableOnce[Value]): ValueSet
    Attributes
    protected
    Definition Classes
    ValueSet → SortedSetFactoryDefaults → IterableFactoryDefaults → IterableOps
  58. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  59. def groupBy[K](f: (Value) => K): Map[K, ValueSet]
    Definition Classes
    IterableOps
  60. def groupMap[K, B](key: (Value) => K)(f: (Value) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  61. def groupMapReduce[K, B](key: (Value) => K)(f: (Value) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  62. def grouped(size: Int): Iterator[ValueSet]
    Definition Classes
    IterableOps
  63. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  64. def head: Value
    Definition Classes
    IterableOps
  65. def headOption: Option[Value]
    Definition Classes
    IterableOps
  66. def incl(value: Value): ValueSet
    Definition Classes
    ValueSet → SetOps
  67. def init: ValueSet
    Definition Classes
    IterableOps
  68. def inits: Iterator[ValueSet]
    Definition Classes
    IterableOps
  69. def intersect(that: Set[Value]): ValueSet
    Definition Classes
    SetOps
  70. def isEmpty: Boolean
    Definition Classes
    ValueSet → IterableOnceOps
  71. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  72. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  73. def iterableFactory: IterableFactory[Set]
    Definition Classes
    Set → Set → Iterable → Iterable → IterableOps
  74. def iterator: Iterator[Value]
    Definition Classes
    ValueSet → IterableOnce
  75. def iteratorFrom(start: Value): Iterator[Value]
    Definition Classes
    ValueSet → SortedSetOps
  76. def knownSize: Int
    Definition Classes
    ValueSet → IterableOnce
  77. def last: Value
    Definition Classes
    IterableOps
  78. def lastKey: Value
    Definition Classes
    SortedSetOps → SortedOps
  79. def lastOption: Option[Value]
    Definition Classes
    IterableOps
  80. def lazyZip[B](that: Iterable[B]): LazyZip2[Value, B, ValueSet.this.type]
    Definition Classes
    Iterable
  81. def map[B](f: (Value) => B)(implicit ev: Ordering[B]): SortedSet[B]
    Definition Classes
    ValueSet → SortedSetOps
  82. def map(f: (Value) => Value): ValueSet
  83. def map[B](f: (Value) => B): Set[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  84. def max[B >: Value](implicit ord: Ordering[B]): Value
    Definition Classes
    SortedSetOps → IterableOnceOps
  85. def maxBefore(key: Value): Option[Value]
    Definition Classes
    SortedSetOps
  86. def maxBy[B](f: (Value) => B)(implicit cmp: Ordering[B]): Value
    Definition Classes
    IterableOnceOps
  87. def maxByOption[B](f: (Value) => B)(implicit cmp: Ordering[B]): Option[Value]
    Definition Classes
    IterableOnceOps
  88. def maxOption[B >: Value](implicit ord: Ordering[B]): Option[Value]
    Definition Classes
    IterableOnceOps
  89. def min[B >: Value](implicit ord: Ordering[B]): Value
    Definition Classes
    SortedSetOps → IterableOnceOps
  90. def minAfter(key: Value): Option[Value]
    Definition Classes
    SortedSetOps
  91. def minBy[B](f: (Value) => B)(implicit cmp: Ordering[B]): Value
    Definition Classes
    IterableOnceOps
  92. def minByOption[B](f: (Value) => B)(implicit cmp: Ordering[B]): Option[Value]
    Definition Classes
    IterableOnceOps
  93. def minOption[B >: Value](implicit ord: Ordering[B]): Option[Value]
    Definition Classes
    IterableOnceOps
  94. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  95. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  96. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  97. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  98. def newSpecificBuilder: Builder[Value, ValueSet]
    Attributes
    protected
    Definition Classes
    ValueSet → SortedSetFactoryDefaults → IterableFactoryDefaults → IterableOps
  99. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  100. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  101. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  102. implicit def ordering: Ordering[Value]
    Definition Classes
    ValueSet → SortedOps
  103. def partition(p: (Value) => Boolean): (ValueSet, ValueSet)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  104. def partitionMap[A1, A2](f: (Value) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  105. def product[B >: Value](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  106. def range(from: Value, until: Value): ValueSet
    Definition Classes
    SortedOps
  107. def rangeFrom(from: Value): ValueSet
    Definition Classes
    SortedOps
  108. def rangeImpl(from: Option[Value], until: Option[Value]): ValueSet
    Definition Classes
    ValueSet → SortedOps
  109. def rangeTo(to: Value): ValueSet
    Definition Classes
    SortedSetOps → SortedOps
  110. def rangeUntil(until: Value): ValueSet
    Definition Classes
    SortedOps
  111. def reduce[B >: Value](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  112. def reduceLeft[B >: Value](op: (B, Value) => B): B
    Definition Classes
    IterableOnceOps
  113. def reduceLeftOption[B >: Value](op: (B, Value) => B): Option[B]
    Definition Classes
    IterableOnceOps
  114. def reduceOption[B >: Value](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  115. def reduceRight[B >: Value](op: (Value, B) => B): B
    Definition Classes
    IterableOnceOps
  116. def reduceRightOption[B >: Value](op: (Value, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  117. def removedAll(that: IterableOnce[Value]): ValueSet
    Definition Classes
    SetOps
  118. def reversed: Iterable[Value]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  119. def scan[B >: Value](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  120. def scanLeft[B](z: B)(op: (B, Value) => B): Set[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  121. def scanRight[B](z: B)(op: (Value, B) => B): Set[B]
    Definition Classes
    IterableOps
  122. def size: Int
    Definition Classes
    IterableOnceOps
  123. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  124. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  125. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  126. def slice(from: Int, until: Int): ValueSet
    Definition Classes
    IterableOps → IterableOnceOps
  127. def sliding(size: Int, step: Int): Iterator[ValueSet]
    Definition Classes
    IterableOps
  128. def sliding(size: Int): Iterator[ValueSet]
    Definition Classes
    IterableOps
  129. def sortedIterableFactory: SortedIterableFactory[SortedSet]
    Definition Classes
    SortedSet → SortedSet → SortedSetOps
  130. def span(p: (Value) => Boolean): (ValueSet, ValueSet)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  131. def splitAt(n: Int): (ValueSet, ValueSet)
    Definition Classes
    IterableOps → IterableOnceOps
  132. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Value, S]): S
    Definition Classes
    IterableOnce
  133. final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[Value, B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  134. final def strictOptimizedConcat[B >: Value, C2](that: IterableOnce[B], b: Builder[B, C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  135. final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: (Value) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  136. final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: (Value) => IterableOnce[B]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  137. final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: (Value) => B): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  138. final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[(Value, B), C2]): C2
    Attributes
    protected[this]
    Definition Classes
    StrictOptimizedIterableOps
    Annotations
    @inline()
  139. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    SortedSet → Set → Iterable
  140. def subsetOf(that: Set[Value]): Boolean
    Definition Classes
    SetOps
  141. def subsets(): Iterator[ValueSet]
    Definition Classes
    SetOps
  142. def subsets(len: Int): Iterator[ValueSet]
    Definition Classes
    SetOps
  143. def sum[B >: Value](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  144. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  145. def tail: ValueSet
    Definition Classes
    IterableOps
  146. def tails: Iterator[ValueSet]
    Definition Classes
    IterableOps
  147. def take(n: Int): ValueSet
    Definition Classes
    IterableOps → IterableOnceOps
  148. def takeRight(n: Int): ValueSet
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  149. def takeWhile(p: (Value) => Boolean): ValueSet
    Definition Classes
    IterableOps → IterableOnceOps
  150. def tapEach[U](f: (Value) => U): ValueSet
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  151. def to[C1](factory: Factory[Value, C1]): C1
    Definition Classes
    IterableOnceOps
  152. def toArray[B >: Value](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  153. def toBitMask: Array[Long]

    Creates a bit mask for the zero-adjusted ids in this set as a new array of longs

  154. final def toBuffer[B >: Value]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  155. def toIndexedSeq: IndexedSeq[Value]
    Definition Classes
    IterableOnceOps
  156. def toList: List[Value]
    Definition Classes
    IterableOnceOps
  157. def toMap[K, V](implicit ev: <:<[Value, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  158. def toSeq: Seq[Value]
    Definition Classes
    IterableOnceOps
  159. def toSet[B >: Value]: Set[B]
    Definition Classes
    IterableOnceOps
  160. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  161. def toVector: Vector[Value]
    Definition Classes
    IterableOnceOps
  162. def transpose[B](implicit asIterable: (Value) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  163. final def union(that: Set[Value]): ValueSet
    Definition Classes
    SetOps
    Annotations
    @inline()
  164. def unsorted: Set[Value]
    Definition Classes
    SortedSet → SortedSetOps → SortedSet → SortedSetOps
  165. def unzip[A1, A2](implicit asPair: (Value) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  166. def unzip3[A1, A2, A3](implicit asTriple: (Value) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  167. def view: View[Value]
    Definition Classes
    IterableOps
  168. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  169. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  170. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  171. def withFilter(p: (Value) => Boolean): WithFilter[Value, [x]Set[x], [X]SortedSet[X]]
    Definition Classes
    SortedSetFactoryDefaults → IterableOps
  172. def zip[B](that: IterableOnce[B])(implicit ev: Ordering[(Value, B)]): SortedSet[(Value, B)]
    Definition Classes
    ValueSet → SortedSetOps
  173. def zip[B](that: IterableOnce[B]): Set[(Value, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  174. def zipAll[A1 >: Value, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  175. def zipWithIndex: Set[(Value, Int)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  176. final def |(that: Set[Value]): ValueSet
    Definition Classes
    SetOps
    Annotations
    @inline()

Deprecated Value Members

  1. def +(elem1: Value, elem2: Value, elems: Value*): ValueSet
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  2. def ++:[B >: Value](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: Value, elem2: Value, elems: Value*): ValueSet
    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, Value) => 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: (Value, 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, Value) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

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

    (Since version 2.13.0) Use iterableFactory instead

  8. def compare(k0: Value, k1: Value): Int
    Definition Classes
    SortedOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use ordering.compare instead

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

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

  10. final def from(from: Value): ValueSet
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeFrom

  11. 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)

  12. def keysIteratorFrom(start: Value): Iterator[Value]
    Definition Classes
    SortedSetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use iteratorFrom instead.

  13. final def repr: ValueSet
    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

  14. def seq: ValueSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  15. final def to(to: Value): ValueSet
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeTo

  16. final def toIterable: ValueSet.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

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

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

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

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

  19. final def toTraversable: Traversable[Value]
    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

  20. final def until(until: Value): ValueSet
    Definition Classes
    SortedOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use rangeUntil

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

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

Inherited from Serializable

Inherited from StrictOptimizedIterableOps[Value, Set, ValueSet]

Inherited from SortedSet[Value]

Inherited from SortedSetOps[Value, SortedSet, ValueSet]

Inherited from SortedSet[Value]

Inherited from SortedSetFactoryDefaults[Value, [X]SortedSet[X], [x]Set[x]]

Inherited from SortedSetOps[Value, [X]SortedSet[X], ValueSet]

Inherited from SortedOps[Value, ValueSet]

Inherited from AbstractSet[Value]

Inherited from Set[Value]

Inherited from SetOps[Value, Set, ValueSet]

Inherited from Iterable[Value]

Inherited from AbstractSet[Value]

Inherited from Set[Value]

Inherited from Equals

Inherited from SetOps[Value, [_]Set[_], ValueSet]

Inherited from (Value) => Boolean

Inherited from AbstractIterable[Value]

Inherited from Iterable[Value]

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

Inherited from IterableOps[Value, [_]Set[_], ValueSet]

Inherited from IterableOnceOps[Value, [_]Set[_], ValueSet]

Inherited from IterableOnce[Value]

Inherited from AnyRef

Inherited from Any

Ungrouped