Packages

trait View[A] extends Set[A] with SetOps[A, View, View[A]] with IterableFactoryDefaults[A, View] with TxnDebuggable

A Set that provides atomic execution of all of its methods.

Linear Supertypes
TxnDebuggable, Set[A], SetOps[A, [X]View[X], View[A]], Shrinkable[A], Builder[A, View[A]], Growable[A], Clearable, collection.mutable.Cloneable[View[A]], java.lang.Cloneable, Set[A], Equals, SetOps[A, [_]View[_], View[A]], (A) => Boolean, collection.mutable.Iterable[A], collection.Iterable[A], IterableFactoryDefaults[A, [x]View[x]], IterableOps[A, [_]View[_], View[A]], IterableOnceOps[A, [_]View[_], View[A]], collection.IterableOnce[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. View
  2. TxnDebuggable
  3. Set
  4. SetOps
  5. Shrinkable
  6. Builder
  7. Growable
  8. Clearable
  9. Cloneable
  10. Cloneable
  11. Set
  12. Equals
  13. SetOps
  14. Function1
  15. Iterable
  16. Iterable
  17. IterableFactoryDefaults
  18. IterableOps
  19. IterableOnceOps
  20. IterableOnce
  21. AnyRef
  22. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def addOne(elem: A): View.this.type
    Definition Classes
    Growable
  2. abstract def clear(): Unit
    Definition Classes
    Builder → Clearable
  3. abstract def contains(elem: A): Boolean
    Definition Classes
    SetOps
  4. abstract def dbgStr: String

    Returns a string representation of the transactional value in this instance for debugging convenience.

    Returns a string representation of the transactional value in this instance for debugging convenience. The Ref reads (and writes) performed while constructing the result will be discarded before returning. This method works fine outside a transaction.

    If this method is called from within a transaction that is already doomed (status Txn.Rolledback), a string describing the reason for the outer transaction's rollback will be returned.

    Definition Classes
    TxnDebuggable
  5. abstract def dbgValue: Any

    Returns some value that is suitable for examination in a debugger, or returns a Txn.RollbackCause if called from inside a doomed atomic block.

    Returns some value that is suitable for examination in a debugger, or returns a Txn.RollbackCause if called from inside a doomed atomic block.

    Definition Classes
    TxnDebuggable
  6. abstract def iterator: collection.Iterator[A]
    Definition Classes
    IterableOnce
  7. abstract def snapshot: Set[A]

    Takes an atomic snapshot of this transactional set.

  8. abstract def subtractOne(elem: A): View.this.type
    Definition Classes
    Shrinkable
  9. abstract def tset: TSet[A]

    Returns the TSet perspective on this transactional set, which provides set functionality only inside atomic blocks.

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

Deprecated Value Members

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

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

  2. def +(elem: A): View[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.union

  3. def ++:[B >: A](that: collection.IterableOnce[B]): View[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

  4. final def +=(elem1: A, elem2: A, elems: A*): View.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  5. def -(elem1: A, elem2: A, elems: A*): View[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

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

  6. def -(elem: A): View[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.diff

  7. def --(that: collection.IterableOnce[A]): View[A]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

  10. def aggregate[B](z: => B)(seqop: (B, A) => 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.

  11. def companion: IterableFactory[[_]View[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

  14. final def repr: View[A]
    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

  15. final def retain(p: (A) => Boolean): Unit
    Definition Classes
    SetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  16. def seq: View.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

  19. final def toTraversable: collection.Traversable[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

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

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

Inherited from TxnDebuggable

Inherited from Set[A]

Inherited from SetOps[A, [X]View[X], View[A]]

Inherited from Shrinkable[A]

Inherited from Builder[A, View[A]]

Inherited from Growable[A]

Inherited from Clearable

Inherited from collection.mutable.Cloneable[View[A]]

Inherited from java.lang.Cloneable

Inherited from Set[A]

Inherited from Equals

Inherited from SetOps[A, [_]View[_], View[A]]

Inherited from (A) => Boolean

Inherited from collection.mutable.Iterable[A]

Inherited from collection.Iterable[A]

Inherited from IterableFactoryDefaults[A, [x]View[x]]

Inherited from IterableOps[A, [_]View[_], View[A]]

Inherited from IterableOnceOps[A, [_]View[_], View[A]]

Inherited from collection.IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Ungrouped