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 columns extends SelectionSet[Int]

Linear Supertypes
SelectionSet[Int], SetWrapper[Int], Set[Int], SetLike[Int, Set[Int]], collection.mutable.Cloneable[Set[Int]], Cloneable, java.lang.Cloneable, Shrinkable[Int], Builder[Int, Set[Int]], Growable[Int], Clearable, Scriptable[Int], Set[Int], SetLike[Int, Set[Int]], Subtractable[Int, Set[Int]], GenSet[Int], GenericSetTemplate[Int, Set], GenSetLike[Int, Set[Int]], (Int) ⇒ Boolean, collection.mutable.Iterable[Int], collection.Iterable[Int], IterableLike[Int, Set[Int]], Equals, GenIterable[Int], GenIterableLike[Int, Set[Int]], collection.mutable.Traversable[Int], Mutable, collection.Traversable[Int], GenTraversable[Int], GenericTraversableTemplate[Int, Set], TraversableLike[Int, Set[Int]], GenTraversableLike[Int, Set[Int]], Parallelizable[Int, ParSet[Int]], collection.TraversableOnce[Int], GenTraversableOnce[Int], FilterMonadic[Int, Set[Int]], HasNewBuilder[Int, Set[Int]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. columns
  2. SelectionSet
  3. SetWrapper
  4. Set
  5. SetLike
  6. Cloneable
  7. Cloneable
  8. Cloneable
  9. Shrinkable
  10. Builder
  11. Growable
  12. Clearable
  13. Scriptable
  14. Set
  15. SetLike
  16. Subtractable
  17. GenSet
  18. GenericSetTemplate
  19. GenSetLike
  20. Function1
  21. Iterable
  22. Iterable
  23. IterableLike
  24. Equals
  25. GenIterable
  26. GenIterableLike
  27. Traversable
  28. Mutable
  29. Traversable
  30. GenTraversable
  31. GenericTraversableTemplate
  32. TraversableLike
  33. GenTraversableLike
  34. Parallelizable
  35. TraversableOnce
  36. GenTraversableOnce
  37. FilterMonadic
  38. HasNewBuilder
  39. AnyRef
  40. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

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

    The collection passed to addAll and subtractAll

    The collection passed to addAll and subtractAll

    Definition Classes
    SetWrapper
  2. type Self = Set[Int]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &(that: GenSet[Int]): Set[Int]
    Definition Classes
    GenSetLike
  4. def &~(that: GenSet[Int]): Set[Int]
    Definition Classes
    GenSetLike
  5. def +(elem1: Int, elem2: Int, elems: Int*): Set[Int]
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  6. def +(elem: Int): Set[Int]
    Definition Classes
    SetLike → SetLike → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  7. def ++(xs: GenTraversableOnce[Int]): Set[Int]
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new set. Use ++= to add elements to this set and return that set itself.

  8. def ++[B >: Int, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: Int, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike
  10. def ++:[B >: Int, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike
  11. final def ++=(xs: MoreElem[Int]): columns.this.type
    Definition Classes
    SetWrapper → Growable
  12. final def +=(elem: Int): columns.this.type
    Definition Classes
    SetWrapper → SetLike → Builder → Growable
  13. def +=(elem1: Int, elem2: Int, elems: Int*): columns.this.type
    Definition Classes
    Growable
  14. def -(elem1: Int, elem2: Int, elems: Int*): Set[Int]
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  15. def -(elem: Int): Set[Int]
    Definition Classes
    SetLike → SetLike → Subtractable → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  16. def --(xs: GenTraversableOnce[Int]): Set[Int]
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new set. Use --= to remove elements from this set and return that set itself.

  17. final def --=(xs: MoreElem[Int]): columns.this.type
    Definition Classes
    SetWrapper → Shrinkable
  18. final def -=(elem: Int): columns.this.type
    Definition Classes
    SetWrapper → SetLike → Shrinkable
  19. def -=(elem1: Int, elem2: Int, elems: Int*): columns.this.type
    Definition Classes
    Shrinkable
  20. def /:[B](z: B)(op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def :\[B](z: B)(op: (Int, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. def add(elem: Int): Boolean
    Definition Classes
    SetLike
  24. def addAll(xs: MoreElem[Int]): columns.this.type
    Definition Classes
    SetWrapper
  25. def addOne(n: Int): columns.this.type
    Definition Classes
    columnsSetWrapper
  26. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  27. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  28. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  29. def aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def anchorIndex: Int
  31. def andThen[A](g: (Boolean) ⇒ A): (Int) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  32. def apply(elem: Int): Boolean
    Definition Classes
    GenSetLike → Function1
  33. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  34. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  35. def clear(): Unit
    Definition Classes
    columns → SetLike → Builder → Growable → Clearable
  36. def clone(): Set[Int]
    Definition Classes
    SetLike → Cloneable → AnyRef
  37. def collect[B, That](pf: PartialFunction[Int, B])(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  38. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
    Definition Classes
    TraversableOnce
  39. def companion: GenericCompanion[Set]
    Definition Classes
    Set → Set → GenSet → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  40. def compose[A](g: (A) ⇒ Int): (A) ⇒ Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  41. def contains(n: Int): Boolean
    Definition Classes
    SelectionSet → SetLike → GenSetLike
  42. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: Int](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToArray[B >: Int](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def copyToBuffer[B >: Int](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  46. def count(p: (Int) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def diff(that: GenSet[Int]): Set[Int]
    Definition Classes
    SetLike → GenSetLike
  48. def drop(n: Int): Set[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  49. def dropRight(n: Int): Set[Int]
    Definition Classes
    IterableLike
  50. def dropWhile(p: (Int) ⇒ Boolean): Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def empty: Set[Int]
    Definition Classes
    GenericSetTemplate
  52. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  53. def equals(that: Any): Boolean
    Definition Classes
    GenSetLike → Equals → AnyRef → Any
  54. def exists(p: (Int) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  55. def filter(p: (Int) ⇒ Boolean): Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def filterNot(p: (Int) ⇒ Boolean): Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. def find(p: (Int) ⇒ Boolean): Option[Int]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def flatMap[B, That](f: (Int) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  60. def flatten[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[B]
    Definition Classes
    GenericTraversableTemplate
  61. def fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  62. def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def foldRight[B](z: B)(op: (Int, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  64. def forall(p: (Int) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  65. def foreach[U](f: (Int) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  66. def genericBuilder[B]: Builder[B, Set[B]]
    Definition Classes
    GenericTraversableTemplate
  67. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  68. def groupBy[K](f: (Int) ⇒ K): Map[K, Set[Int]]
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def grouped(size: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableLike
  70. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  71. def hashCode(): Int
    Definition Classes
    GenSetLike → AnyRef → Any
  72. def head: Int
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  73. def headOption: Option[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  74. def init: Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  75. def inits: collection.Iterator[Set[Int]]
    Definition Classes
    TraversableLike
  76. def intersect(that: GenSet[Int]): Set[Int]
    Definition Classes
    GenSetLike
  77. def isEmpty: Boolean
    Definition Classes
    SetLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  78. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  79. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  80. def iterator: Iterator[Int]
    Definition Classes
    SelectionSet → GenSetLike → IterableLike → GenIterableLike
  81. def last: Int
    Definition Classes
    TraversableLike → GenTraversableLike
  82. def lastOption: Option[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def leadIndex: Int
  84. def map[B, That](f: (Int) ⇒ B)(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike → FilterMonadic
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.

  85. def mapResult[NewTo](f: (Set[Int]) ⇒ NewTo): Builder[Int, NewTo]
    Definition Classes
    Builder
  86. def max[B >: Int](implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def min[B >: Int](implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  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. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  95. def newBuilder: Builder[Int, Set[Int]]
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → HasNewBuilder
  96. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  98. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  99. def par: ParSet[Int]
    Definition Classes
    Parallelizable
  100. def parCombiner: Combiner[Int, ParSet[Int]]
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → Parallelizable
  101. def partition(p: (Int) ⇒ Boolean): (Set[Int], Set[Int])
    Definition Classes
    TraversableLike → GenTraversableLike
  102. def product[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def reduceLeft[B >: Int](op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce
  105. def reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def reduceRight[B >: Int](op: (Int, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  108. def reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def remove(elem: Int): Boolean
    Definition Classes
    SetLike
  110. def repr: Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  111. def result(): Set[Int]
    Definition Classes
    SetLike → Builder
  112. def retain(p: (Int) ⇒ Boolean): Unit
    Definition Classes
    SetLike
  113. def reversed: List[Int]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  114. def sameElements[B >: Int](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  115. def scan[B >: Int, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def scanLeft[B, That](z: B)(op: (B, Int) ⇒ B)(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def scanRight[B, That](z: B)(op: (Int, B) ⇒ B)(implicit bf: CanBuildFrom[Set[Int], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  118. def seq: Set[Int]
    Definition Classes
    Set → Set → GenSet → GenSetLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  119. def size: Int
    Definition Classes
    SelectionSet → GenTraversableLike → TraversableOnce → GenTraversableOnce
  120. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Definition Classes
    Builder
  121. def sizeHint(coll: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  122. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  123. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  124. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  125. def slice(from: Int, until: Int): Set[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  126. def sliding(size: Int, step: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableLike
  127. def sliding(size: Int): collection.Iterator[Set[Int]]
    Definition Classes
    IterableLike
  128. def span(p: (Int) ⇒ Boolean): (Set[Int], Set[Int])
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def splitAt(n: Int): (Set[Int], Set[Int])
    Definition Classes
    TraversableLike → GenTraversableLike
  130. def stringPrefix: String
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike
  131. def subsetOf(that: GenSet[Int]): Boolean
    Definition Classes
    GenSetLike
  132. def subsets(): collection.Iterator[Set[Int]]
    Definition Classes
    SetLike
  133. def subsets(len: Int): collection.Iterator[Set[Int]]
    Definition Classes
    SetLike
  134. def subtractAll(xs: MoreElem[Int]): columns.this.type
    Definition Classes
    SetWrapper
  135. def subtractOne(n: Int): columns.this.type
    Definition Classes
    columnsSetWrapper
  136. def sum[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  138. def tail: Set[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  139. def tails: collection.Iterator[Set[Int]]
    Definition Classes
    TraversableLike
  140. def take(n: Int): Set[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  141. def takeRight(n: Int): Set[Int]
    Definition Classes
    IterableLike
  142. def takeWhile(p: (Int) ⇒ Boolean): Set[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  143. def thisCollection: collection.Iterable[Int]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  144. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  145. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. def toBuffer[A1 >: Int]: Buffer[A1]
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  147. def toCollection(repr: Set[Int]): collection.Iterable[Int]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  148. def toIndexedSeq: collection.immutable.IndexedSeq[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  149. def toIterable: collection.Iterable[Int]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  150. def toIterator: collection.Iterator[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  151. def toList: List[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def toSeq: collection.Seq[Int]
    Definition Classes
    SetLike → SetLike → TraversableOnce → GenTraversableOnce
  154. def toSet[B >: Int]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  155. def toStream: collection.immutable.Stream[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  156. def toString(): String
    Definition Classes
    SetLike → Function1 → TraversableLike → AnyRef → Any
  157. def toTraversable: collection.Traversable[Int]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  158. def toVector: Vector[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def transpose[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[Set[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  160. def union(that: GenSet[Int]): Set[Int]
    Definition Classes
    SetLike → GenSetLike
  161. def unzip[A1, A2](implicit asPair: (Int) ⇒ (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    GenericTraversableTemplate
  162. def unzip3[A1, A2, A3](implicit asTriple: (Int) ⇒ (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    GenericTraversableTemplate
  163. def update(elem: Int, included: Boolean): Unit
    Definition Classes
    SetLike
  164. def view(from: Int, until: Int): IterableView[Int, Set[Int]]
    Definition Classes
    IterableLike → TraversableLike
  165. def view: IterableView[Int, Set[Int]]
    Definition Classes
    IterableLike → TraversableLike
  166. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  167. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  168. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  169. def withFilter(p: (Int) ⇒ Boolean): FilterMonadic[Int, Set[Int]]
    Definition Classes
    TraversableLike → FilterMonadic
  170. def zip[A1 >: Int, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Set[Int], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  171. def zipAll[B, A1 >: Int, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Set[Int], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  172. def zipWithIndex[A1 >: Int, That](implicit bf: CanBuildFrom[Set[Int], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  173. def |(that: GenSet[Int]): Set[Int]
    Definition Classes
    GenSetLike

Deprecated Value Members

  1. def <<(cmd: Message[Int]): Unit
    Definition Classes
    SetLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) scripting is deprecated

Inherited from SelectionSet[Int]

Inherited from SetWrapper[Int]

Inherited from Set[Int]

Inherited from SetLike[Int, Set[Int]]

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

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from Shrinkable[Int]

Inherited from Builder[Int, Set[Int]]

Inherited from Growable[Int]

Inherited from Clearable

Inherited from Scriptable[Int]

Inherited from Set[Int]

Inherited from SetLike[Int, Set[Int]]

Inherited from Subtractable[Int, Set[Int]]

Inherited from GenSet[Int]

Inherited from GenericSetTemplate[Int, Set]

Inherited from GenSetLike[Int, Set[Int]]

Inherited from (Int) ⇒ Boolean

Inherited from collection.mutable.Iterable[Int]

Inherited from collection.Iterable[Int]

Inherited from IterableLike[Int, Set[Int]]

Inherited from Equals

Inherited from GenIterable[Int]

Inherited from GenIterableLike[Int, Set[Int]]

Inherited from collection.mutable.Traversable[Int]

Inherited from Mutable

Inherited from collection.Traversable[Int]

Inherited from GenTraversable[Int]

Inherited from GenericTraversableTemplate[Int, Set]

Inherited from TraversableLike[Int, Set[Int]]

Inherited from GenTraversableLike[Int, Set[Int]]

Inherited from Parallelizable[Int, ParSet[Int]]

Inherited from collection.TraversableOnce[Int]

Inherited from GenTraversableOnce[Int]

Inherited from FilterMonadic[Int, Set[Int]]

Inherited from HasNewBuilder[Int, Set[Int]]

Inherited from AnyRef

Inherited from Any

Ungrouped