Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package swing

    Scala-swing is a graphical user interface library that will wrap most of Java Swing for Scala in a straightforward manner.

    Scala-swing is a graphical user interface library that will wrap most of Java Swing for Scala in a straightforward manner.

    Overview

    The widget class hierarchy loosely resembles that of Java Swing. The main differences are:

    • In Java Swing all components are containers per default. This does not make much sense for a number of components, like scala.swing.TextField, scala.swing.CheckBox, scala.swing.RadioButton, and so on. Our guess is that this architecture was chosen because Java lacks multiple inheritance. In scala-swing, components that can have child components extend the scala.swing.Container trait.
    • Layout managers and panels are coupled. There is no way to exchange the layout manager of a panel. As a result, the layout constraints for widgets can be typed. (Note that you gain more type-safety and do not loose much flexibility here. Besides being not a common operation, exchanging the layout manager of a panel in Java Swing almost always leads to exchanging the layout constraints for every of the panel's child component. In the end, it is not more work to move all children to a newly created panel.)
    • Widget hierarchies are built by adding children to their parent container's contents collection. The typical usage style is to create anonymous subclasses of the widgets to customize their properties, and nest children and event reactions.
    • The scala-swing event system follows a different approach than the underlying Java system. Instead of adding event listeners with a particular interface (such as java.awt.ActionListener), a scala.swing.Reactor instance announces the interest in receiving events by calling listenTo for a scala.swing.Publisher. Publishers are also reactors and listen to themselves per default as a convenience. A reactor contains an object reactions which serves as a convenient place to register observers by adding partial functions that pattern match for any event that the observer is interested in. This is shown in the examples section below.
    • For more details see SIP-8.

    Scala-swing comprises two main packages:

    • scala.swing: All widget classes and traits.
    • scala.swing.event: The event hierarchy.

    This package object contains useful type aliases that do not have wrappers.

    Examples

    The following example shows how to plug components and containers together and react to a mouse click on a button:

    import scala.swing._
    
    new Frame {
      title = "Hello world"
    
      contents = new FlowPanel {
        contents += new Label("Launch rainbows:")
        contents += new Button("Click me") {
          reactions += {
            case event.ButtonClicked(_) =>
              println("All the colours!")
          }
        }
      }
    
      pack()
      centerOnScreen()
      open()
    }
    Definition Classes
    scala
  • class Table extends Component with Wrapper

    Displays a matrix of items.

    Displays a matrix of items.

    To obtain a scrollable table or row and columns headers, wrap the table in a scroll pane.

    Definition Classes
    swing
    See also

    javax.swing.JTable

  • object selection extends Publisher
    Definition Classes
    Table
  • SelectionSet
  • columns
  • rows

object rows extends SelectionSet[Int]

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

Type Members

  1. type MoreElem[+B] = collection.IterableOnce[B]

    The collection passed to addAll and subtractAll

    The collection passed to addAll and subtractAll

    Definition Classes
    SetWrapper

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[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: collection.IterableOnce[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: Int](suffix: collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++=(xs: collection.IterableOnce[Int]): rows.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: Int): rows.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def --=(xs: collection.IterableOnce[Int]): rows.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def -=(elem: Int): rows.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def add(elem: Int): Boolean
    Definition Classes
    SetOps
  13. def addAll(xs: collection.IterableOnce[Int]): rows.this.type
    Definition Classes
    Growable
  14. def addOne(n: Int): rows.this.type
    Definition Classes
    rows → 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 anchorIndex: Int
  19. def andThen[A](g: (Boolean) => A): (Int) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  20. final def apply(elem: Int): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  23. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  24. def clear(): Unit
    Definition Classes
    rowsSetWrapper → Builder → Clearable
  25. def clone(): Set[Int]
    Definition Classes
    SetOps → Cloneable → AnyRef
  26. final def coll: rows.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  27. def collect[B](pf: PartialFunction[Int, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  28. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
    Definition Classes
    IterableOnceOps
  29. def compose[A](g: (A) => Int): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  30. def concat(that: collection.IterableOnce[Int]): Set[Int]
    Definition Classes
    SetOps
  31. def concat[B >: Int](suffix: collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  32. def contains(n: Int): Boolean
    Definition Classes
    SelectionSet → SetOps
  33. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  34. def copyToArray[B >: Int](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  35. def copyToArray[B >: Int](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  36. def corresponds[B](that: collection.IterableOnce[B])(p: (Int, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  37. def count(p: (Int) => Boolean): Int
    Definition Classes
    IterableOnceOps
  38. def diff(that: Set[Int]): Set[Int]
    Definition Classes
    SetOps → SetOps
  39. def drop(n: Int): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  40. def dropRight(n: Int): Set[Int]
    Definition Classes
    IterableOps
  41. def dropWhile(p: (Int) => Boolean): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  42. def empty: Set[Int]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  43. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. def equals(that: Any): Boolean
    Definition Classes
    Set → Equals → AnyRef → Any
  45. def exists(p: (Int) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  46. def filter(pred: (Int) => Boolean): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  47. def filterInPlace(p: (Int) => Boolean): rows.this.type
    Definition Classes
    SetOps
  48. def filterNot(pred: (Int) => Boolean): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  49. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  50. def find(p: (Int) => Boolean): Option[Int]
    Definition Classes
    IterableOnceOps
  51. def flatMap[B](f: (Int) => collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  52. def flatten[B](implicit asIterable: (Int) => collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  53. def fold[A1 >: Int](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  54. def foldLeft[B](z: B)(op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
  55. def foldRight[B](z: B)(op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
  56. def forall(p: (Int) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  57. def foreach[U](f: (Int) => U): Unit
    Definition Classes
    IterableOnceOps
  58. def fromSpecific(coll: collection.IterableOnce[Int]): Set[Int]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  59. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  60. def groupBy[K](f: (Int) => K): Map[K, Set[Int]]
    Definition Classes
    IterableOps
  61. def groupMap[K, B](key: (Int) => K)(f: (Int) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  62. def groupMapReduce[K, B](key: (Int) => K)(f: (Int) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  63. def grouped(size: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableOps
  64. def hashCode(): Int
    Definition Classes
    Set → AnyRef → Any
  65. def head: Int
    Definition Classes
    IterableOps
  66. def headOption: Option[Int]
    Definition Classes
    IterableOps
  67. def init: Set[Int]
    Definition Classes
    IterableOps
  68. def inits: collection.Iterator[Set[Int]]
    Definition Classes
    IterableOps
  69. def intersect(that: Set[Int]): Set[Int]
    Definition Classes
    SetOps
  70. def isEmpty: Boolean
    Definition Classes
    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[Int]
    Definition Classes
    SelectionSet → IterableOnce
  75. def knownSize: Int
    Definition Classes
    SetOps → Growable → IterableOnce
  76. def last: Int
    Definition Classes
    IterableOps
  77. def lastOption: Option[Int]
    Definition Classes
    IterableOps
  78. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[Int, B, rows.this.type]
    Definition Classes
    Iterable
  79. def leadIndex: Int
  80. def map[B](f: (Int) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  81. def mapResult[NewTo](f: (Set[Int]) => NewTo): Builder[Int, NewTo]
    Definition Classes
    Builder
  82. def max[B >: Int](implicit ord: math.Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  83. def maxBy[B](f: (Int) => B)(implicit cmp: math.Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  84. def maxByOption[B](f: (Int) => B)(implicit cmp: math.Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  85. def maxOption[B >: Int](implicit ord: math.Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  86. def min[B >: Int](implicit ord: math.Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  87. def minBy[B](f: (Int) => B)(implicit cmp: math.Ordering[B]): Int
    Definition Classes
    IterableOnceOps
  88. def minByOption[B](f: (Int) => B)(implicit cmp: math.Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  89. def minOption[B >: Int](implicit ord: math.Ordering[B]): Option[Int]
    Definition Classes
    IterableOnceOps
  90. final def mkIterator[B](xs: MoreElem[B]): Iterator[B]

    Cross-version way for creating an iterator from MoreElem.

    Cross-version way for creating an iterator from MoreElem.

    Attributes
    protected
    Definition Classes
    SetWrapper
  91. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  92. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  93. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  94. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  95. def newSpecificBuilder: Builder[Int, Set[Int]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  96. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  97. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  98. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  99. def partition(p: (Int) => Boolean): (Set[Int], Set[Int])
    Definition Classes
    IterableOps
  100. def partitionMap[A1, A2](f: (Int) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  101. def product[B >: Int](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  102. def reduce[B >: Int](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  103. def reduceLeft[B >: Int](op: (B, Int) => B): B
    Definition Classes
    IterableOnceOps
  104. def reduceLeftOption[B >: Int](op: (B, Int) => B): Option[B]
    Definition Classes
    IterableOnceOps
  105. def reduceOption[B >: Int](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  106. def reduceRight[B >: Int](op: (Int, B) => B): B
    Definition Classes
    IterableOnceOps
  107. def reduceRightOption[B >: Int](op: (Int, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  108. def remove(elem: Int): Boolean
    Definition Classes
    SetOps
  109. def result(): Set[Int]
    Definition Classes
    SetOps → Builder
  110. def reversed: collection.Iterable[Int]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  111. def scan[B >: Int](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  112. def scanLeft[B](z: B)(op: (B, Int) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def scanRight[B](z: B)(op: (Int, B) => B): Set[B]
    Definition Classes
    IterableOps
  114. def size: Int
    Definition Classes
    SelectionSet → IterableOnceOps
  115. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  116. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  117. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  118. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  119. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Definition Classes
    Builder
  120. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  121. def slice(from: Int, until: Int): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  122. def sliding(size: Int, step: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableOps
  123. def sliding(size: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableOps
  124. def span(p: (Int) => Boolean): (Set[Int], Set[Int])
    Definition Classes
    IterableOps → IterableOnceOps
  125. def splitAt(n: Int): (Set[Int], Set[Int])
    Definition Classes
    IterableOps → IterableOnceOps
  126. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Int, S]): S
    Definition Classes
    IterableOnce
  127. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  128. def subsetOf(that: Set[Int]): Boolean
    Definition Classes
    SetOps
  129. def subsets(): collection.Iterator[Set[Int]]
    Definition Classes
    SetOps
  130. def subsets(len: Int): collection.Iterator[Set[Int]]
    Definition Classes
    SetOps
  131. def subtractAll(xs: collection.IterableOnce[Int]): rows.this.type
    Definition Classes
    Shrinkable
  132. def subtractOne(n: Int): rows.this.type
    Definition Classes
    rows → Shrinkable
  133. def sum[B >: Int](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  134. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  135. def tail: Set[Int]
    Definition Classes
    IterableOps
  136. def tails: collection.Iterator[Set[Int]]
    Definition Classes
    IterableOps
  137. def take(n: Int): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  138. def takeRight(n: Int): Set[Int]
    Definition Classes
    IterableOps
  139. def takeWhile(p: (Int) => Boolean): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  140. def tapEach[U](f: (Int) => U): Set[Int]
    Definition Classes
    IterableOps → IterableOnceOps
  141. def to[C1](factory: Factory[Int, C1]): C1
    Definition Classes
    IterableOnceOps
  142. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  143. final def toBuffer[B >: Int]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. def toIndexedSeq: collection.immutable.IndexedSeq[Int]
    Definition Classes
    IterableOnceOps
  145. final def toIterable: rows.this.type
    Definition Classes
    Iterable → IterableOps
  146. def toList: collection.immutable.List[Int]
    Definition Classes
    IterableOnceOps
  147. def toMap[K, V](implicit ev: <:<[Int, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  148. def toSeq: collection.immutable.Seq[Int]
    Definition Classes
    IterableOnceOps
  149. def toSet[B >: Int]: Set[B]
    Definition Classes
    IterableOnceOps
  150. def toString(): String
    Definition Classes
    Set → Function1 → Iterable → AnyRef → Any
  151. def toVector: collection.immutable.Vector[Int]
    Definition Classes
    IterableOnceOps
  152. def transpose[B](implicit asIterable: (Int) => collection.Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  153. final def union(that: Set[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @inline()
  154. def unzip[A1, A2](implicit asPair: (Int) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  155. def unzip3[A1, A2, A3](implicit asTriple: (Int) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  156. def update(elem: Int, included: Boolean): Unit
    Definition Classes
    SetOps
  157. def view: View[Int]
    Definition Classes
    IterableOps
  158. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  159. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  160. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  161. def withFilter(p: (Int) => Boolean): WithFilter[Int, [_]Set[_]]
    Definition Classes
    IterableOps
  162. def zip[B](that: collection.IterableOnce[B]): Set[(Int, B)]
    Definition Classes
    IterableOps
  163. def zipAll[A1 >: Int, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  164. def zipWithIndex: Set[(Int, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  165. final def |(that: Set[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @inline()

Deprecated Value Members

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

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

  2. def +(elem: Int): Set[Int]
    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 >: Int](that: collection.IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

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

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

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

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

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

  6. def -(elem: Int): Set[Int]
    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[Int]): Set[Int]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  8. def -=(elem1: Int, elem2: Int, elems: Int*): rows.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

    (Since version 2.13.0) Use iterableFactory instead

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

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

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

  15. final def repr: Set[Int]
    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

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

    (Since version 2.13.0) Use filterInPlace instead

  17. def seq: rows.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

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

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

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

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

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

    (Since version 2.13.0) Use toIterable instead

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

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

Inherited from SelectionSet[Int]

Inherited from SetWrapper[Int]

Inherited from Set[Int]

Inherited from SetOps[Int, Set, Set[Int]]

Inherited from Shrinkable[Int]

Inherited from Builder[Int, Set[Int]]

Inherited from Growable[Int]

Inherited from Clearable

Inherited from collection.mutable.Cloneable[Set[Int]]

Inherited from java.lang.Cloneable

Inherited from Set[Int]

Inherited from Equals

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

Inherited from (Int) => Boolean

Inherited from collection.mutable.Iterable[Int]

Inherited from collection.Iterable[Int]

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

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

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

Inherited from collection.IterableOnce[Int]

Inherited from AnyRef

Inherited from Any

Ungrouped