Package

scala

Permalink

package scala

Core Scala types. They are always available without an explicit import.

Source
package.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. scala
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ::[A] = scala.collection.immutable.::[A]

    Permalink
  2. type AbstractMethodError = java.lang.AbstractMethodError

    Permalink
  3. abstract class Any

    Permalink

    Class Any is the root of the Scala class hierarchy.

    Class Any is the root of the Scala class hierarchy. Every class in a Scala execution environment inherits directly or indirectly from this class.

    Starting with Scala 2.10 it is possible to directly extend Any using universal traits. A universal trait is a trait that extends Any, only has defs as members, and does no initialization.

    The main use case for universal traits is to allow basic inheritance of methods for value classes. For example,

    trait Printable extends Any {
      def print(): Unit = println(this)
    }
    class Wrapper(val underlying: Int) extends AnyVal with Printable
    
    val w = new Wrapper(3)
    w.print()

    See the Value Classes and Universal Traits for more details on the interplay of universal traits and value classes.

  4. abstract class AnyVal extends Any

    Permalink

    AnyVal is the root class of all value types, which describe values not implemented as objects in the underlying host system.

    AnyVal is the root class of all value types, which describe values not implemented as objects in the underlying host system. Value classes are specified in Scala Language Specification, section 12.2.

    The standard implementation includes nine AnyVal subtypes:

    scala.Double, scala.Float, scala.Long, scala.Int, scala.Char, scala.Short, and scala.Byte are the numeric value types.

    scala.Unit and scala.Boolean are the non-numeric value types.

    Other groupings:

    Prior to Scala 2.10, AnyVal was a sealed trait. Beginning with Scala 2.10, however, it is possible to define a subclass of AnyVal called a user-defined value class which is treated specially by the compiler. Properly-defined user value classes provide a way to improve performance on user-defined types by avoiding object allocation at runtime, and by replacing virtual method invocations with static method invocations.

    User-defined value classes which avoid object allocation...

    • must have a single val parameter that is the underlying runtime representation.
    • can define defs, but no vals, vars, or nested traitss, classes or objects.
    • typically extend no other trait apart from AnyVal.
    • cannot be used in type tests or pattern matching.
    • may not override equals or hashCode methods.

    A minimal example:

    class Wrapper(val underlying: Int) extends AnyVal {
      def foo: Wrapper = new Wrapper(underlying * 19)
    }

    It's important to note that user-defined value classes are limited, and in some circumstances, still must allocate a value class instance at runtime. These limitations and circumstances are explained in greater detail in the Value Classes and Universal Traits.

  5. trait App extends DelayedInit

    Permalink

    The App trait can be used to quickly turn objects into executable programs.

    The App trait can be used to quickly turn objects into executable programs. Here is an example:

    object Main extends App {
      Console.println("Hello World: " + (args mkString ", "))
    }

    Here, object Main inherits the main method of App.

    args returns the current command line arguments as an array.

    Caveats

    It should be noted that this trait is implemented using the DelayedInit functionality, which means that fields of the object will not have been initialized before the main method has been executed.

    It should also be noted that the main method should not be overridden: the whole class body becomes the “main method”.

    Future versions of this trait will no longer extend DelayedInit.

    Version

    2.1, 15/02/2011

  6. final class Array[T] extends java.io.Serializable with java.lang.Cloneable

    Permalink

    Arrays are mutable, indexed collections of values.

    Arrays are mutable, indexed collections of values. Array[T] is Scala's representation for Java's T[].

    val numbers = Array(1, 2, 3, 4)
    val first = numbers(0) // read the first element
    numbers(3) = 100 // replace the 4th array element with 100
    val biggerNumbers = numbers.map(_ * 2) // multiply all numbers by two

    Arrays make use of two common pieces of Scala syntactic sugar, shown on lines 2 and 3 of the above example code. Line 2 is translated into a call to apply(Int), while line 3 is translated into a call to update(Int, T).

    Two implicit conversions exist in scala.Predef that are frequently applied to arrays: a conversion to scala.collection.mutable.ArrayOps (shown on line 4 of the example above) and a conversion to scala.collection.mutable.WrappedArray (a subtype of scala.collection.Seq). Both types make available many of the standard operations found in the Scala collections API. The conversion to ArrayOps is temporary, as all operations defined on ArrayOps return an Array, while the conversion to WrappedArray is permanent as all operations return a WrappedArray.

    The conversion to ArrayOps takes priority over the conversion to WrappedArray. For instance, consider the following code:

    val arr = Array(1, 2, 3)
    val arrReversed = arr.reverse
    val seqReversed : Seq[Int] = arr.reverse

    Value arrReversed will be of type Array[Int], with an implicit conversion to ArrayOps occurring to perform the reverse operation. The value of seqReversed, on the other hand, will be computed by converting to WrappedArray first and invoking the variant of reverse that returns another WrappedArray.

    Version

    1.0

    See also

    "The Scala 2.8 Collections' API" section on Array by Martin Odersky for more information.

    "Scala 2.8 Arrays" the Scala Improvement Document detailing arrays since Scala 2.8.

    Scala Language Specification, for in-depth information on the transformations the Scala compiler makes on Arrays (Sections 6.6 and 6.15 respectively.)

  7. type ArrayIndexOutOfBoundsException = java.lang.ArrayIndexOutOfBoundsException

    Permalink
  8. type BigDecimal = scala.math.BigDecimal

    Permalink
  9. type BigInt = scala.math.BigInt

    Permalink
  10. abstract final class Boolean extends AnyVal

    Permalink

    Boolean (equivalent to Java's boolean primitive type) is a subtype of scala.AnyVal.

    Boolean (equivalent to Java's boolean primitive type) is a subtype of scala.AnyVal. Instances of Boolean are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Boolean => scala.runtime.RichBoolean which provides useful non-primitive operations.

  11. type BufferedIterator[+A] = scala.collection.BufferedIterator[A]

    Permalink
  12. abstract final class Byte extends AnyVal

    Permalink

    Byte, a 8-bit signed integer (equivalent to Java's byte primitive type) is a subtype of scala.AnyVal.

    Byte, a 8-bit signed integer (equivalent to Java's byte primitive type) is a subtype of scala.AnyVal. Instances of Byte are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Byte => scala.runtime.RichByte which provides useful non-primitive operations.

  13. abstract final class Char extends AnyVal

    Permalink

    Char, a 16-bit unsigned integer (equivalent to Java's char primitive type) is a subtype of scala.AnyVal.

    Char, a 16-bit unsigned integer (equivalent to Java's char primitive type) is a subtype of scala.AnyVal. Instances of Char are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Char => scala.runtime.RichChar which provides useful non-primitive operations.

  14. type ClassCastException = java.lang.ClassCastException

    Permalink
  15. trait Cloneable extends java.lang.Cloneable

    Permalink

    Classes extending this trait are cloneable across platforms (Java, .NET).

  16. abstract final class Double extends AnyVal

    Permalink

    Double, a 64-bit IEEE-754 floating point number (equivalent to Java's double primitive type) is a subtype of scala.AnyVal.

    Double, a 64-bit IEEE-754 floating point number (equivalent to Java's double primitive type) is a subtype of scala.AnyVal. Instances of Double are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Double => scala.runtime.RichDouble which provides useful non-primitive operations.

  17. trait Dynamic extends Any

    Permalink

    A marker trait that enables dynamic invocations.

    A marker trait that enables dynamic invocations. Instances x of this trait allow method invocations x.meth(args) for arbitrary method names meth and argument lists args as well as field accesses x.field for arbitrary field names field.

    If a call is not natively supported by x (i.e. if type checking fails), it is rewritten according to the following rules:

    foo.method("blah")      ~~> foo.applyDynamic("method")("blah")
    foo.method(x = "blah")  ~~> foo.applyDynamicNamed("method")(("x", "blah"))
    foo.method(x = 1, 2)    ~~> foo.applyDynamicNamed("method")(("x", 1), ("", 2))
    foo.field           ~~> foo.selectDynamic("field")
    foo.varia = 10      ~~> foo.updateDynamic("varia")(10)
    foo.arr(10) = 13    ~~> foo.selectDynamic("arr").update(10, 13)
    foo.arr(10)         ~~> foo.applyDynamic("arr")(10)

    As of Scala 2.10, defining direct or indirect subclasses of this trait is only possible if the language feature dynamics is enabled.

  18. type Either[+A, +B] = scala.util.Either[A, B]

    Permalink
  19. abstract class Enumeration extends Serializable

    Permalink

    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 evaluation.

    All values in an enumeration share a common, unique type defined as the Value type member of the enumeration (Value selected on the stable identifier path of the enumeration instance).

    Annotations
    @SerialVersionUID()
    Example:
    1. object Main extends App {
        object WeekDay extends Enumeration {
          type WeekDay = Value
          val Mon, Tue, Wed, Thu, Fri, Sat, Sun = Value
        }
        import WeekDay._
        def isWorkingDay(d: WeekDay) = ! (d == Sat || d == Sun)
        WeekDay.values filter isWorkingDay foreach println
      }
      // output:
      // Mon
      // Tue
      // Wed
      // Thu
      // Fri
  20. trait Equals extends Any

    Permalink

    An interface containing operations for equality.

    An interface containing operations for equality. The only method not already present in class AnyRef is canEqual.

  21. type Equiv[T] = scala.math.Equiv[T]

    Permalink
  22. type Error = java.lang.Error

    Permalink
  23. type Exception = java.lang.Exception

    Permalink
  24. class FallbackArrayBuilding extends AnyRef

    Permalink

    Contains a fallback builder for arrays when the element type does not have a class tag.

    Contains a fallback builder for arrays when the element type does not have a class tag. In that case a generic array is built.

  25. abstract final class Float extends AnyVal

    Permalink

    Float, a 32-bit IEEE-754 floating point number (equivalent to Java's float primitive type) is a subtype of scala.AnyVal.

    Float, a 32-bit IEEE-754 floating point number (equivalent to Java's float primitive type) is a subtype of scala.AnyVal. Instances of Float are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Float => scala.runtime.RichFloat which provides useful non-primitive operations.

  26. type Fractional[T] = scala.math.Fractional[T]

    Permalink
  27. trait Function0[+R] extends AnyRef

    Permalink

    A function of 0 parameters.

    A function of 0 parameters.

    In the following example, the definition of javaVersion is a shorthand for the anonymous class definition anonfun0:

     object Main extends App {
       val javaVersion = () => sys.props("java.version")
    
       val anonfun0 = new Function0[String] {
         def apply(): String = sys.props("java.version")
       }
       assert(javaVersion() == anonfun0())
    }
  28. trait Function1[-T1, +R] extends AnyRef

    Permalink

    A function of 1 parameter.

    A function of 1 parameter.

    In the following example, the definition of succ is a shorthand for the anonymous class definition anonfun1:

     object Main extends App {
       val succ = (x: Int) => x + 1
       val anonfun1 = new Function1[Int, Int] {
         def apply(x: Int): Int = x + 1
       }
       assert(succ(0) == anonfun1(0))
    }

    Note that the difference between Function1 and scala.PartialFunction is that the latter can specify inputs which it will not handle.

    Annotations
    @implicitNotFound( msg = ... )
  29. trait Function10[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, +R] extends AnyRef

    Permalink

    A function of 10 parameters.

  30. trait Function11[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, +R] extends AnyRef

    Permalink

    A function of 11 parameters.

  31. trait Function12[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, +R] extends AnyRef

    Permalink

    A function of 12 parameters.

  32. trait Function13[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, +R] extends AnyRef

    Permalink

    A function of 13 parameters.

  33. trait Function14[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, +R] extends AnyRef

    Permalink

    A function of 14 parameters.

  34. trait Function15[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, +R] extends AnyRef

    Permalink

    A function of 15 parameters.

  35. trait Function16[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, +R] extends AnyRef

    Permalink

    A function of 16 parameters.

  36. trait Function17[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, +R] extends AnyRef

    Permalink

    A function of 17 parameters.

  37. trait Function18[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, -T18, +R] extends AnyRef

    Permalink

    A function of 18 parameters.

  38. trait Function19[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, -T18, -T19, +R] extends AnyRef

    Permalink

    A function of 19 parameters.

  39. trait Function2[-T1, -T2, +R] extends AnyRef

    Permalink

    A function of 2 parameters.

    A function of 2 parameters.

    In the following example, the definition of max is a shorthand for the anonymous class definition anonfun2:

     object Main extends App {
       val max = (x: Int, y: Int) => if (x < y) y else x
    
       val anonfun2 = new Function2[Int, Int, Int] {
         def apply(x: Int, y: Int): Int = if (x < y) y else x
       }
       assert(max(0, 1) == anonfun2(0, 1))
    }
  40. trait Function20[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, -T18, -T19, -T20, +R] extends AnyRef

    Permalink

    A function of 20 parameters.

  41. trait Function21[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, -T18, -T19, -T20, -T21, +R] extends AnyRef

    Permalink

    A function of 21 parameters.

  42. trait Function22[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, -T18, -T19, -T20, -T21, -T22, +R] extends AnyRef

    Permalink

    A function of 22 parameters.

  43. trait Function3[-T1, -T2, -T3, +R] extends AnyRef

    Permalink

    A function of 3 parameters.

  44. trait Function4[-T1, -T2, -T3, -T4, +R] extends AnyRef

    Permalink

    A function of 4 parameters.

  45. trait Function5[-T1, -T2, -T3, -T4, -T5, +R] extends AnyRef

    Permalink

    A function of 5 parameters.

  46. trait Function6[-T1, -T2, -T3, -T4, -T5, -T6, +R] extends AnyRef

    Permalink

    A function of 6 parameters.

  47. trait Function7[-T1, -T2, -T3, -T4, -T5, -T6, -T7, +R] extends AnyRef

    Permalink

    A function of 7 parameters.

  48. trait Function8[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, +R] extends AnyRef

    Permalink

    A function of 8 parameters.

  49. trait Function9[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, +R] extends AnyRef

    Permalink

    A function of 9 parameters.

  50. type IllegalArgumentException = java.lang.IllegalArgumentException

    Permalink
  51. trait Immutable extends AnyRef

    Permalink

    A marker trait for all immutable datastructures such as immutable collections.

    A marker trait for all immutable datastructures such as immutable collections.

    Since

    2.8

  52. type IndexOutOfBoundsException = java.lang.IndexOutOfBoundsException

    Permalink
  53. type IndexedSeq[+A] = scala.collection.IndexedSeq[A]

    Permalink
  54. abstract final class Int extends AnyVal

    Permalink

    Int, a 32-bit signed integer (equivalent to Java's int primitive type) is a subtype of scala.AnyVal.

    Int, a 32-bit signed integer (equivalent to Java's int primitive type) is a subtype of scala.AnyVal. Instances of Int are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Int => scala.runtime.RichInt which provides useful non-primitive operations.

  55. type Integral[T] = scala.math.Integral[T]

    Permalink
  56. type InterruptedException = java.lang.InterruptedException

    Permalink
  57. type Iterable[+A] = scala.collection.Iterable[A]

    Permalink
  58. type Iterator[+A] = scala.collection.Iterator[A]

    Permalink
  59. type Left[+A, +B] = scala.util.Left[A, B]

    Permalink
  60. type List[+A] = scala.collection.immutable.List[A]

    Permalink
  61. abstract final class Long extends AnyVal

    Permalink

    Long, a 64-bit signed integer (equivalent to Java's long primitive type) is a subtype of scala.AnyVal.

    Long, a 64-bit signed integer (equivalent to Java's long primitive type) is a subtype of scala.AnyVal. Instances of Long are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Long => scala.runtime.RichLong which provides useful non-primitive operations.

  62. final class MatchError extends RuntimeException

    Permalink

    This class implements errors which are thrown whenever an object doesn't match any pattern of a pattern matching expression.

    This class implements errors which are thrown whenever an object doesn't match any pattern of a pattern matching expression.

    Version

    1.1, 05/03/2004

    Since

    2.0

  63. trait Mutable extends AnyRef

    Permalink

    A marker trait for mutable data structures such as mutable collections

    A marker trait for mutable data structures such as mutable collections

    Since

    2.8

  64. type NoSuchElementException = java.util.NoSuchElementException

    Permalink
  65. final class NotImplementedError extends Error

    Permalink

    Throwing this exception can be a temporary replacement for a method body that remains to be implemented.

    Throwing this exception can be a temporary replacement for a method body that remains to be implemented. For instance, the exception is thrown by Predef.???.

  66. abstract final class Nothing extends Any

    Permalink

    Nothing is - together with scala.Null - at the bottom of Scala's type hierarchy.

    Nothing is - together with scala.Null - at the bottom of Scala's type hierarchy.

    Nothing is a subtype of every other type (including scala.Null); there exist no instances of this type. Although type Nothing is uninhabited, it is nevertheless useful in several ways. For instance, the Scala library defines a value scala.collection.immutable.Nil of type List[Nothing]. Because lists are covariant in Scala, this makes scala.collection.immutable.Nil an instance of List[T], for any element of type T.

    Another usage for Nothing is the return type for methods which never return normally. One example is method error in scala.sys, which always throws an exception.

  67. abstract final class Null extends AnyRef

    Permalink

    Null is - together with scala.Nothing - at the bottom of the Scala type hierarchy.

    Null is - together with scala.Nothing - at the bottom of the Scala type hierarchy.

    Null is a subtype of all reference types; its only instance is the null reference. Since Null is not a subtype of value types, null is not a member of any such type. For instance, it is not possible to assign null to a variable of type scala.Int.

  68. type NullPointerException = java.lang.NullPointerException

    Permalink
  69. type NumberFormatException = java.lang.NumberFormatException

    Permalink
  70. type Numeric[T] = scala.math.Numeric[T]

    Permalink
  71. sealed abstract class Option[+A] extends Product with Serializable

    Permalink

    Represents optional values.

    Represents optional values. Instances of Option are either an instance of scala.Some or the object None.

    The most idiomatic way to use an scala.Option instance is to treat it as a collection or monad and use map,flatMap, filter, or foreach:

    val name: Option[String] = request getParameter "name"
    val upper = name map { _.trim } filter { _.length != 0 } map { _.toUpperCase }
    println(upper getOrElse "")

    Note that this is equivalent to

    val upper = for {
      name <- request getParameter "name"
      trimmed <- Some(name.trim)
      upper <- Some(trimmed.toUpperCase) if trimmed.length != 0
    } yield upper
    println(upper getOrElse "")

    Because of how for comprehension works, if None is returned from request.getParameter, the entire expression results in None

    This allows for sophisticated chaining of scala.Option values without having to check for the existence of a value.

    A less-idiomatic way to use scala.Option values is via pattern matching:

    val nameMaybe = request getParameter "name"
    nameMaybe match {
      case Some(name) =>
        println(name.trim.toUppercase)
      case None =>
        println("No name value")
    }
    Annotations
    @SerialVersionUID()
    Version

    1.1, 16/01/2007

    Note

    Many of the methods in here are duplicative with those in the Traversable hierarchy, but they are duplicated for a reason: the implicit conversion tends to leave one with an Iterable in situations where one could have retained an Option.

  72. type Ordered[T] = scala.math.Ordered[T]

    Permalink
  73. type Ordering[T] = scala.math.Ordering[T]

    Permalink
  74. trait PartialFunction[-A, +B] extends (A) ⇒ B

    Permalink

    A partial function of type PartialFunction[A, B] is a unary function where the domain does not necessarily include all values of type A.

    A partial function of type PartialFunction[A, B] is a unary function where the domain does not necessarily include all values of type A. The function isDefinedAt allows to test dynamically if a value is in the domain of the function.

    Even if isDefinedAt returns true for an a: A, calling apply(a) may still throw an exception, so the following code is legal:

    val f: PartialFunction[Int, Any] = { case _ => 1/0 }

    It is the responsibility of the caller to call isDefinedAt before calling apply, because if isDefinedAt is false, it is not guaranteed apply will throw an exception to indicate an error condition. If an exception is not thrown, evaluation may result in an arbitrary value.

    The main distinction between PartialFunction and scala.Function1 is that the user of a PartialFunction may choose to do something different with input that is declared to be outside its domain. For example:

    val sample = 1 to 10
    val isEven: PartialFunction[Int, String] = {
      case x if x % 2 == 0 => x+" is even"
    }
    
    // the method collect can use isDefinedAt to select which members to collect
    val evenNumbers = sample collect isEven
    
    val isOdd: PartialFunction[Int, String] = {
      case x if x % 2 == 1 => x+" is odd"
    }
    
    // the method orElse allows chaining another partial function to handle
    // input outside the declared domain
    val numbers = sample map (isEven orElse isOdd)
    Version

    1.0, 16/07/2003

  75. type PartialOrdering[T] = scala.math.PartialOrdering[T]

    Permalink
  76. type PartiallyOrdered[T] = scala.math.PartiallyOrdered[T]

    Permalink
  77. trait Product extends Equals

    Permalink

    Base trait for all products, which in the standard library include at least scala.Product1 through scala.Product22 and therefore also their subclasses scala.Tuple1 through scala.Tuple22.

    Base trait for all products, which in the standard library include at least scala.Product1 through scala.Product22 and therefore also their subclasses scala.Tuple1 through scala.Tuple22. In addition, all case classes implement Product with synthetically generated methods.

    Version

    1.0

    Since

    2.3

  78. trait Product1[+T1] extends Product

    Permalink

    Product1 is a cartesian product of 1 component.

    Product1 is a cartesian product of 1 component.

    Since

    2.3

  79. trait Product10[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10] extends Product

    Permalink

    Product10 is a cartesian product of 10 components.

    Product10 is a cartesian product of 10 components.

    Since

    2.3

  80. trait Product11[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11] extends Product

    Permalink

    Product11 is a cartesian product of 11 components.

    Product11 is a cartesian product of 11 components.

    Since

    2.3

  81. trait Product12[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12] extends Product

    Permalink

    Product12 is a cartesian product of 12 components.

    Product12 is a cartesian product of 12 components.

    Since

    2.3

  82. trait Product13[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13] extends Product

    Permalink

    Product13 is a cartesian product of 13 components.

    Product13 is a cartesian product of 13 components.

    Since

    2.3

  83. trait Product14[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14] extends Product

    Permalink

    Product14 is a cartesian product of 14 components.

    Product14 is a cartesian product of 14 components.

    Since

    2.3

  84. trait Product15[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15] extends Product

    Permalink

    Product15 is a cartesian product of 15 components.

    Product15 is a cartesian product of 15 components.

    Since

    2.3

  85. trait Product16[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16] extends Product

    Permalink

    Product16 is a cartesian product of 16 components.

    Product16 is a cartesian product of 16 components.

    Since

    2.3

  86. trait Product17[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17] extends Product

    Permalink

    Product17 is a cartesian product of 17 components.

    Product17 is a cartesian product of 17 components.

    Since

    2.3

  87. trait Product18[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18] extends Product

    Permalink

    Product18 is a cartesian product of 18 components.

    Product18 is a cartesian product of 18 components.

    Since

    2.3

  88. trait Product19[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19] extends Product

    Permalink

    Product19 is a cartesian product of 19 components.

    Product19 is a cartesian product of 19 components.

    Since

    2.3

  89. trait Product2[+T1, +T2] extends Product

    Permalink

    Product2 is a cartesian product of 2 components.

    Product2 is a cartesian product of 2 components.

    Since

    2.3

  90. trait Product20[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20] extends Product

    Permalink

    Product20 is a cartesian product of 20 components.

    Product20 is a cartesian product of 20 components.

    Since

    2.3

  91. trait Product21[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20, +T21] extends Product

    Permalink

    Product21 is a cartesian product of 21 components.

    Product21 is a cartesian product of 21 components.

    Since

    2.3

  92. trait Product22[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20, +T21, +T22] extends Product

    Permalink

    Product22 is a cartesian product of 22 components.

    Product22 is a cartesian product of 22 components.

    Since

    2.3

  93. trait Product3[+T1, +T2, +T3] extends Product

    Permalink

    Product3 is a cartesian product of 3 components.

    Product3 is a cartesian product of 3 components.

    Since

    2.3

  94. trait Product4[+T1, +T2, +T3, +T4] extends Product

    Permalink

    Product4 is a cartesian product of 4 components.

    Product4 is a cartesian product of 4 components.

    Since

    2.3

  95. trait Product5[+T1, +T2, +T3, +T4, +T5] extends Product

    Permalink

    Product5 is a cartesian product of 5 components.

    Product5 is a cartesian product of 5 components.

    Since

    2.3

  96. trait Product6[+T1, +T2, +T3, +T4, +T5, +T6] extends Product

    Permalink

    Product6 is a cartesian product of 6 components.

    Product6 is a cartesian product of 6 components.

    Since

    2.3

  97. trait Product7[+T1, +T2, +T3, +T4, +T5, +T6, +T7] extends Product

    Permalink

    Product7 is a cartesian product of 7 components.

    Product7 is a cartesian product of 7 components.

    Since

    2.3

  98. trait Product8[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8] extends Product

    Permalink

    Product8 is a cartesian product of 8 components.

    Product8 is a cartesian product of 8 components.

    Since

    2.3

  99. trait Product9[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9] extends Product

    Permalink

    Product9 is a cartesian product of 9 components.

    Product9 is a cartesian product of 9 components.

    Since

    2.3

  100. trait Proxy extends Any

    Permalink

    This class implements a simple proxy that forwards all calls to the public, non-final methods defined in class Any to another object self.

    This class implements a simple proxy that forwards all calls to the public, non-final methods defined in class Any to another object self. Those methods are:

    def hashCode(): Int
    def equals(other: Any): Boolean
    def toString(): String

    Note: forwarding methods in this way will most likely create an asymmetric equals method, which is not generally recommended.

    Version

    1.0, 26/04/2004

  101. type Range = scala.collection.immutable.Range

    Permalink
  102. type Right[+A, +B] = scala.util.Right[A, B]

    Permalink
  103. type RuntimeException = java.lang.RuntimeException

    Permalink
  104. case class ScalaReflectionException(msg: String) extends Exception with Product with Serializable

    Permalink

    An exception that indicates an error during Scala reflection

  105. type Seq[+A] = scala.collection.Seq[A]

    Permalink
  106. class SerialVersionUID extends Annotation with ClassfileAnnotation

    Permalink

    Annotation for specifying the static SerialVersionUID field of a serializable class.

  107. trait Serializable extends java.io.Serializable

    Permalink

    Classes extending this trait are serializable across platforms (Java, .NET).

  108. abstract final class Short extends AnyVal

    Permalink

    Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal.

    Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. Instances of Short are not represented by an object in the underlying runtime system.

    There is an implicit conversion from scala.Short => scala.runtime.RichShort which provides useful non-primitive operations.

  109. final case class Some[+A](x: A) extends Option[A] with Product with Serializable

    Permalink

    Class Some[A] represents existing values of type A.

    Class Some[A] represents existing values of type A.

    Annotations
    @SerialVersionUID()
    Version

    1.0, 16/07/2003

  110. trait Specializable extends AnyRef

    Permalink

    A common supertype for companions of specializable types.

    A common supertype for companions of specializable types. Should not be extended in user code.

  111. type Stream[+A] = scala.collection.immutable.Stream[A]

    Permalink
  112. type StringBuilder = scala.collection.mutable.StringBuilder

    Permalink
  113. case class StringContext(parts: String*) extends Product with Serializable

    Permalink

    This class provides the basic mechanism to do String Interpolation.

    This class provides the basic mechanism to do String Interpolation. String Interpolation allows users to embed variable references directly in *processed* string literals. Here's an example:

    val name = "James"
    println(s"Hello, $name")  // Hello, James

    Any processed string literal is rewritten as an instantiation and method call against this class. For example:

    s"Hello, $name"

    is rewritten to be:

    StringContext("Hello, ", "").s(name)

    By default, this class provides the raw, s and f methods as available interpolators.

    To provide your own string interpolator, create an implicit class which adds a method to StringContext. Here's an example:

    implicit class JsonHelper(private val sc: StringContext) extends AnyVal {
      def json(args: Any*): JSONObject = ...
    }
    val x: JSONObject = json"{ a: $a }"

    Here the JsonHelper extension class implicitly adds the json method to StringContext which can be used for json string literals.

    parts

    The parts that make up the interpolated string, without the expressions that get inserted by interpolation.

    Since

    2.10.0

  114. type StringIndexOutOfBoundsException = java.lang.StringIndexOutOfBoundsException

    Permalink
  115. final class Symbol extends Serializable

    Permalink

    This class provides a simple way to get unique objects for equal strings.

    This class provides a simple way to get unique objects for equal strings. Since symbols are interned, they can be compared using reference equality. Instances of Symbol can be created easily with Scala's built-in quote mechanism.

    For instance, the Scala term 'mysym will invoke the constructor of the Symbol class in the following way: Symbol("mysym").

    Version

    1.8

  116. type Throwable = java.lang.Throwable

    Permalink
  117. type Traversable[+A] = scala.collection.Traversable[A]

    Permalink
  118. type TraversableOnce[+A] = scala.collection.TraversableOnce[A]

    Permalink
  119. case class Tuple1[+T1](_1: T1) extends Product1[T1] with Product with Serializable

    Permalink

    A tuple of 1 elements; the canonical representation of a scala.Product1.

    A tuple of 1 elements; the canonical representation of a scala.Product1.

    _1

    Element 1 of this Tuple1

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  120. case class Tuple10[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10) extends Product10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10] with Product with Serializable

    Permalink

    A tuple of 10 elements; the canonical representation of a scala.Product10.

    A tuple of 10 elements; the canonical representation of a scala.Product10.

    _1

    Element 1 of this Tuple10

    _2

    Element 2 of this Tuple10

    _3

    Element 3 of this Tuple10

    _4

    Element 4 of this Tuple10

    _5

    Element 5 of this Tuple10

    _6

    Element 6 of this Tuple10

    _7

    Element 7 of this Tuple10

    _8

    Element 8 of this Tuple10

    _9

    Element 9 of this Tuple10

    _10

    Element 10 of this Tuple10

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  121. case class Tuple11[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11) extends Product11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11] with Product with Serializable

    Permalink

    A tuple of 11 elements; the canonical representation of a scala.Product11.

    A tuple of 11 elements; the canonical representation of a scala.Product11.

    _1

    Element 1 of this Tuple11

    _2

    Element 2 of this Tuple11

    _3

    Element 3 of this Tuple11

    _4

    Element 4 of this Tuple11

    _5

    Element 5 of this Tuple11

    _6

    Element 6 of this Tuple11

    _7

    Element 7 of this Tuple11

    _8

    Element 8 of this Tuple11

    _9

    Element 9 of this Tuple11

    _10

    Element 10 of this Tuple11

    _11

    Element 11 of this Tuple11

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  122. case class Tuple12[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12) extends Product12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12] with Product with Serializable

    Permalink

    A tuple of 12 elements; the canonical representation of a scala.Product12.

    A tuple of 12 elements; the canonical representation of a scala.Product12.

    _1

    Element 1 of this Tuple12

    _2

    Element 2 of this Tuple12

    _3

    Element 3 of this Tuple12

    _4

    Element 4 of this Tuple12

    _5

    Element 5 of this Tuple12

    _6

    Element 6 of this Tuple12

    _7

    Element 7 of this Tuple12

    _8

    Element 8 of this Tuple12

    _9

    Element 9 of this Tuple12

    _10

    Element 10 of this Tuple12

    _11

    Element 11 of this Tuple12

    _12

    Element 12 of this Tuple12

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  123. case class Tuple13[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13) extends Product13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13] with Product with Serializable

    Permalink

    A tuple of 13 elements; the canonical representation of a scala.Product13.

    A tuple of 13 elements; the canonical representation of a scala.Product13.

    _1

    Element 1 of this Tuple13

    _2

    Element 2 of this Tuple13

    _3

    Element 3 of this Tuple13

    _4

    Element 4 of this Tuple13

    _5

    Element 5 of this Tuple13

    _6

    Element 6 of this Tuple13

    _7

    Element 7 of this Tuple13

    _8

    Element 8 of this Tuple13

    _9

    Element 9 of this Tuple13

    _10

    Element 10 of this Tuple13

    _11

    Element 11 of this Tuple13

    _12

    Element 12 of this Tuple13

    _13

    Element 13 of this Tuple13

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  124. case class Tuple14[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14) extends Product14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14] with Product with Serializable

    Permalink

    A tuple of 14 elements; the canonical representation of a scala.Product14.

    A tuple of 14 elements; the canonical representation of a scala.Product14.

    _1

    Element 1 of this Tuple14

    _2

    Element 2 of this Tuple14

    _3

    Element 3 of this Tuple14

    _4

    Element 4 of this Tuple14

    _5

    Element 5 of this Tuple14

    _6

    Element 6 of this Tuple14

    _7

    Element 7 of this Tuple14

    _8

    Element 8 of this Tuple14

    _9

    Element 9 of this Tuple14

    _10

    Element 10 of this Tuple14

    _11

    Element 11 of this Tuple14

    _12

    Element 12 of this Tuple14

    _13

    Element 13 of this Tuple14

    _14

    Element 14 of this Tuple14

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  125. case class Tuple15[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15) extends Product15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15] with Product with Serializable

    Permalink

    A tuple of 15 elements; the canonical representation of a scala.Product15.

    A tuple of 15 elements; the canonical representation of a scala.Product15.

    _1

    Element 1 of this Tuple15

    _2

    Element 2 of this Tuple15

    _3

    Element 3 of this Tuple15

    _4

    Element 4 of this Tuple15

    _5

    Element 5 of this Tuple15

    _6

    Element 6 of this Tuple15

    _7

    Element 7 of this Tuple15

    _8

    Element 8 of this Tuple15

    _9

    Element 9 of this Tuple15

    _10

    Element 10 of this Tuple15

    _11

    Element 11 of this Tuple15

    _12

    Element 12 of this Tuple15

    _13

    Element 13 of this Tuple15

    _14

    Element 14 of this Tuple15

    _15

    Element 15 of this Tuple15

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  126. case class Tuple16[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16) extends Product16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16] with Product with Serializable

    Permalink

    A tuple of 16 elements; the canonical representation of a scala.Product16.

    A tuple of 16 elements; the canonical representation of a scala.Product16.

    _1

    Element 1 of this Tuple16

    _2

    Element 2 of this Tuple16

    _3

    Element 3 of this Tuple16

    _4

    Element 4 of this Tuple16

    _5

    Element 5 of this Tuple16

    _6

    Element 6 of this Tuple16

    _7

    Element 7 of this Tuple16

    _8

    Element 8 of this Tuple16

    _9

    Element 9 of this Tuple16

    _10

    Element 10 of this Tuple16

    _11

    Element 11 of this Tuple16

    _12

    Element 12 of this Tuple16

    _13

    Element 13 of this Tuple16

    _14

    Element 14 of this Tuple16

    _15

    Element 15 of this Tuple16

    _16

    Element 16 of this Tuple16

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  127. case class Tuple17[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17) extends Product17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17] with Product with Serializable

    Permalink

    A tuple of 17 elements; the canonical representation of a scala.Product17.

    A tuple of 17 elements; the canonical representation of a scala.Product17.

    _1

    Element 1 of this Tuple17

    _2

    Element 2 of this Tuple17

    _3

    Element 3 of this Tuple17

    _4

    Element 4 of this Tuple17

    _5

    Element 5 of this Tuple17

    _6

    Element 6 of this Tuple17

    _7

    Element 7 of this Tuple17

    _8

    Element 8 of this Tuple17

    _9

    Element 9 of this Tuple17

    _10

    Element 10 of this Tuple17

    _11

    Element 11 of this Tuple17

    _12

    Element 12 of this Tuple17

    _13

    Element 13 of this Tuple17

    _14

    Element 14 of this Tuple17

    _15

    Element 15 of this Tuple17

    _16

    Element 16 of this Tuple17

    _17

    Element 17 of this Tuple17

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  128. case class Tuple18[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17, _18: T18) extends Product18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18] with Product with Serializable

    Permalink

    A tuple of 18 elements; the canonical representation of a scala.Product18.

    A tuple of 18 elements; the canonical representation of a scala.Product18.

    _1

    Element 1 of this Tuple18

    _2

    Element 2 of this Tuple18

    _3

    Element 3 of this Tuple18

    _4

    Element 4 of this Tuple18

    _5

    Element 5 of this Tuple18

    _6

    Element 6 of this Tuple18

    _7

    Element 7 of this Tuple18

    _8

    Element 8 of this Tuple18

    _9

    Element 9 of this Tuple18

    _10

    Element 10 of this Tuple18

    _11

    Element 11 of this Tuple18

    _12

    Element 12 of this Tuple18

    _13

    Element 13 of this Tuple18

    _14

    Element 14 of this Tuple18

    _15

    Element 15 of this Tuple18

    _16

    Element 16 of this Tuple18

    _17

    Element 17 of this Tuple18

    _18

    Element 18 of this Tuple18

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  129. case class Tuple19[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17, _18: T18, _19: T19) extends Product19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19] with Product with Serializable

    Permalink

    A tuple of 19 elements; the canonical representation of a scala.Product19.

    A tuple of 19 elements; the canonical representation of a scala.Product19.

    _1

    Element 1 of this Tuple19

    _2

    Element 2 of this Tuple19

    _3

    Element 3 of this Tuple19

    _4

    Element 4 of this Tuple19

    _5

    Element 5 of this Tuple19

    _6

    Element 6 of this Tuple19

    _7

    Element 7 of this Tuple19

    _8

    Element 8 of this Tuple19

    _9

    Element 9 of this Tuple19

    _10

    Element 10 of this Tuple19

    _11

    Element 11 of this Tuple19

    _12

    Element 12 of this Tuple19

    _13

    Element 13 of this Tuple19

    _14

    Element 14 of this Tuple19

    _15

    Element 15 of this Tuple19

    _16

    Element 16 of this Tuple19

    _17

    Element 17 of this Tuple19

    _18

    Element 18 of this Tuple19

    _19

    Element 19 of this Tuple19

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  130. case class Tuple2[+T1, +T2](_1: T1, _2: T2) extends Product2[T1, T2] with Product with Serializable

    Permalink

    A tuple of 2 elements; the canonical representation of a scala.Product2.

    A tuple of 2 elements; the canonical representation of a scala.Product2.

    _1

    Element 1 of this Tuple2

    _2

    Element 2 of this Tuple2

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  131. case class Tuple20[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17, _18: T18, _19: T19, _20: T20) extends Product20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20] with Product with Serializable

    Permalink

    A tuple of 20 elements; the canonical representation of a scala.Product20.

    A tuple of 20 elements; the canonical representation of a scala.Product20.

    _1

    Element 1 of this Tuple20

    _2

    Element 2 of this Tuple20

    _3

    Element 3 of this Tuple20

    _4

    Element 4 of this Tuple20

    _5

    Element 5 of this Tuple20

    _6

    Element 6 of this Tuple20

    _7

    Element 7 of this Tuple20

    _8

    Element 8 of this Tuple20

    _9

    Element 9 of this Tuple20

    _10

    Element 10 of this Tuple20

    _11

    Element 11 of this Tuple20

    _12

    Element 12 of this Tuple20

    _13

    Element 13 of this Tuple20

    _14

    Element 14 of this Tuple20

    _15

    Element 15 of this Tuple20

    _16

    Element 16 of this Tuple20

    _17

    Element 17 of this Tuple20

    _18

    Element 18 of this Tuple20

    _19

    Element 19 of this Tuple20

    _20

    Element 20 of this Tuple20

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  132. case class Tuple21[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20, +T21](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17, _18: T18, _19: T19, _20: T20, _21: T21) extends Product21[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21] with Product with Serializable

    Permalink

    A tuple of 21 elements; the canonical representation of a scala.Product21.

    A tuple of 21 elements; the canonical representation of a scala.Product21.

    _1

    Element 1 of this Tuple21

    _2

    Element 2 of this Tuple21

    _3

    Element 3 of this Tuple21

    _4

    Element 4 of this Tuple21

    _5

    Element 5 of this Tuple21

    _6

    Element 6 of this Tuple21

    _7

    Element 7 of this Tuple21

    _8

    Element 8 of this Tuple21

    _9

    Element 9 of this Tuple21

    _10

    Element 10 of this Tuple21

    _11

    Element 11 of this Tuple21

    _12

    Element 12 of this Tuple21

    _13

    Element 13 of this Tuple21

    _14

    Element 14 of this Tuple21

    _15

    Element 15 of this Tuple21

    _16

    Element 16 of this Tuple21

    _17

    Element 17 of this Tuple21

    _18

    Element 18 of this Tuple21

    _19

    Element 19 of this Tuple21

    _20

    Element 20 of this Tuple21

    _21

    Element 21 of this Tuple21

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  133. case class Tuple22[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15, +T16, +T17, +T18, +T19, +T20, +T21, +T22](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9, _10: T10, _11: T11, _12: T12, _13: T13, _14: T14, _15: T15, _16: T16, _17: T17, _18: T18, _19: T19, _20: T20, _21: T21, _22: T22) extends Product22[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22] with Product with Serializable

    Permalink

    A tuple of 22 elements; the canonical representation of a scala.Product22.

    A tuple of 22 elements; the canonical representation of a scala.Product22.

    _1

    Element 1 of this Tuple22

    _2

    Element 2 of this Tuple22

    _3

    Element 3 of this Tuple22

    _4

    Element 4 of this Tuple22

    _5

    Element 5 of this Tuple22

    _6

    Element 6 of this Tuple22

    _7

    Element 7 of this Tuple22

    _8

    Element 8 of this Tuple22

    _9

    Element 9 of this Tuple22

    _10

    Element 10 of this Tuple22

    _11

    Element 11 of this Tuple22

    _12

    Element 12 of this Tuple22

    _13

    Element 13 of this Tuple22

    _14

    Element 14 of this Tuple22

    _15

    Element 15 of this Tuple22

    _16

    Element 16 of this Tuple22

    _17

    Element 17 of this Tuple22

    _18

    Element 18 of this Tuple22

    _19

    Element 19 of this Tuple22

    _20

    Element 20 of this Tuple22

    _21

    Element 21 of this Tuple22

    _22

    Element 22 of this Tuple22

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  134. case class Tuple3[+T1, +T2, +T3](_1: T1, _2: T2, _3: T3) extends Product3[T1, T2, T3] with Product with Serializable

    Permalink

    A tuple of 3 elements; the canonical representation of a scala.Product3.

    A tuple of 3 elements; the canonical representation of a scala.Product3.

    _1

    Element 1 of this Tuple3

    _2

    Element 2 of this Tuple3

    _3

    Element 3 of this Tuple3

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  135. case class Tuple4[+T1, +T2, +T3, +T4](_1: T1, _2: T2, _3: T3, _4: T4) extends Product4[T1, T2, T3, T4] with Product with Serializable

    Permalink

    A tuple of 4 elements; the canonical representation of a scala.Product4.

    A tuple of 4 elements; the canonical representation of a scala.Product4.

    _1

    Element 1 of this Tuple4

    _2

    Element 2 of this Tuple4

    _3

    Element 3 of this Tuple4

    _4

    Element 4 of this Tuple4

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  136. case class Tuple5[+T1, +T2, +T3, +T4, +T5](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5) extends Product5[T1, T2, T3, T4, T5] with Product with Serializable

    Permalink

    A tuple of 5 elements; the canonical representation of a scala.Product5.

    A tuple of 5 elements; the canonical representation of a scala.Product5.

    _1

    Element 1 of this Tuple5

    _2

    Element 2 of this Tuple5

    _3

    Element 3 of this Tuple5

    _4

    Element 4 of this Tuple5

    _5

    Element 5 of this Tuple5

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  137. case class Tuple6[+T1, +T2, +T3, +T4, +T5, +T6](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6) extends Product6[T1, T2, T3, T4, T5, T6] with Product with Serializable

    Permalink

    A tuple of 6 elements; the canonical representation of a scala.Product6.

    A tuple of 6 elements; the canonical representation of a scala.Product6.

    _1

    Element 1 of this Tuple6

    _2

    Element 2 of this Tuple6

    _3

    Element 3 of this Tuple6

    _4

    Element 4 of this Tuple6

    _5

    Element 5 of this Tuple6

    _6

    Element 6 of this Tuple6

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  138. case class Tuple7[+T1, +T2, +T3, +T4, +T5, +T6, +T7](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7) extends Product7[T1, T2, T3, T4, T5, T6, T7] with Product with Serializable

    Permalink

    A tuple of 7 elements; the canonical representation of a scala.Product7.

    A tuple of 7 elements; the canonical representation of a scala.Product7.

    _1

    Element 1 of this Tuple7

    _2

    Element 2 of this Tuple7

    _3

    Element 3 of this Tuple7

    _4

    Element 4 of this Tuple7

    _5

    Element 5 of this Tuple7

    _6

    Element 6 of this Tuple7

    _7

    Element 7 of this Tuple7

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  139. case class Tuple8[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8) extends Product8[T1, T2, T3, T4, T5, T6, T7, T8] with Product with Serializable

    Permalink

    A tuple of 8 elements; the canonical representation of a scala.Product8.

    A tuple of 8 elements; the canonical representation of a scala.Product8.

    _1

    Element 1 of this Tuple8

    _2

    Element 2 of this Tuple8

    _3

    Element 3 of this Tuple8

    _4

    Element 4 of this Tuple8

    _5

    Element 5 of this Tuple8

    _6

    Element 6 of this Tuple8

    _7

    Element 7 of this Tuple8

    _8

    Element 8 of this Tuple8

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  140. case class Tuple9[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9) extends Product9[T1, T2, T3, T4, T5, T6, T7, T8, T9] with Product with Serializable

    Permalink

    A tuple of 9 elements; the canonical representation of a scala.Product9.

    A tuple of 9 elements; the canonical representation of a scala.Product9.

    _1

    Element 1 of this Tuple9

    _2

    Element 2 of this Tuple9

    _3

    Element 3 of this Tuple9

    _4

    Element 4 of this Tuple9

    _5

    Element 5 of this Tuple9

    _6

    Element 6 of this Tuple9

    _7

    Element 7 of this Tuple9

    _8

    Element 8 of this Tuple9

    _9

    Element 9 of this Tuple9

    Annotations
    @deprecatedInheritance( ... , "2.11.0" )
  141. final class UninitializedError extends RuntimeException

    Permalink

    This class represents uninitialized variable/value errors.

    This class represents uninitialized variable/value errors.

    Since

    2.5

  142. final case class UninitializedFieldError(msg: String) extends RuntimeException with Product with Serializable

    Permalink

    This class implements errors which are thrown whenever a field is used before it has been initialized.

    This class implements errors which are thrown whenever a field is used before it has been initialized.

    Such runtime checks are not emitted by default. They can be enabled by the -Xcheckinit compiler option.

    Since

    2.7

  143. abstract final class Unit extends AnyVal

    Permalink

    Unit is a subtype of scala.AnyVal.

    Unit is a subtype of scala.AnyVal. There is only one value of type Unit, (), and it is not represented by any object in the underlying runtime system. A method with return type Unit is analogous to a Java method which is declared void.

  144. type UnsupportedOperationException = java.lang.UnsupportedOperationException

    Permalink
  145. type Vector[+A] = scala.collection.immutable.Vector[A]

    Permalink
  146. class deprecated extends Annotation with StaticAnnotation

    Permalink

    An annotation that designates that a definition is deprecated.

    An annotation that designates that a definition is deprecated. Access to the member then generates a deprecated warning.

    Annotations
    @getter() @setter() @beanGetter() @beanSetter()
    Since

    2.3

  147. class deprecatedName extends Annotation with StaticAnnotation

    Permalink

    An annotation that designates the name of the parameter to which it is applied as deprecated.

    An annotation that designates the name of the parameter to which it is applied as deprecated. Using that name in a named argument generates a deprecation warning.

    For instance, evaluating the code below in the Scala interpreter

    def inc(x: Int, @deprecatedName('y) n: Int): Int = x + n
    inc(1, y = 2)

    will produce the following output:

    warning: there were 1 deprecation warnings; re-run with -deprecation for details
    res0: Int = 3
    Annotations
    @param()
    Since

    2.8.1

  148. class inline extends Annotation with StaticAnnotation

    Permalink

    An annotation on methods that requests that the compiler should try especially hard to inline the annotated method.

    An annotation on methods that requests that the compiler should try especially hard to inline the annotated method.

    Version

    1.0, 2007-5-21

  149. class native extends Annotation with StaticAnnotation

    Permalink

    Marker for native methods.

    Marker for native methods.

    @native def f(x: Int, y: List[Long]): String = ...

    Method body is not generated if method is marked with @native, but it is type checked when present.

    Since

    2.6

  150. class noinline extends Annotation with StaticAnnotation

    Permalink

    An annotation on methods that forbids the compiler to inline the method, no matter how safe the inlining appears to be.

    An annotation on methods that forbids the compiler to inline the method, no matter how safe the inlining appears to be.

    Version

    1.0, 2007-5-21

    Since

    2.5

  151. class remote extends Annotation with StaticAnnotation

    Permalink

    An annotation that designates the class to which it is applied as remotable.

    An annotation that designates the class to which it is applied as remotable.

    For instance, the Scala code

    @remote trait Hello {
      def sayHello(): String
    }

    is equivalent to the following Java code:

    public interface Hello extends java.rmi.Remote {
        String sayHello() throws java.rmi.RemoteException;
    }
  152. class specialized extends Annotation with StaticAnnotation

    Permalink

    Annotate type parameters on which code should be automatically specialized.

    Annotate type parameters on which code should be automatically specialized. For example:

    class MyList[@specialized T] ...

    Type T can be specialized on a subset of the primitive types by specifying a list of primitive types to specialize at:

    class MyList[@specialized(Int, Double, Boolean) T] ..
    Since

    2.8

  153. class throws[T <: Throwable] extends Annotation with StaticAnnotation

    Permalink

    Annotation for specifying the exceptions thrown by a method.

    Annotation for specifying the exceptions thrown by a method. For example:

    class Reader(fname: String) {
      private val in = new BufferedReader(new FileReader(fname))
      @throws[IOException]("if the file doesn't exist")
      def read() = in.read()
    }
    Version

    1.0, 19/05/2006

    Since

    2.1

  154. class transient extends Annotation with StaticAnnotation

    Permalink
    Annotations
    @field()
  155. class unchecked extends Annotation

    Permalink

    An annotation to designate that the annotated entity should not be considered for additional compiler checks.

    An annotation to designate that the annotated entity should not be considered for additional compiler checks. Specific applications include annotating the subject of a match expression to suppress exhaustiveness warnings, and annotating a type argument in a match case to suppress unchecked warnings.

    Such suppression should be used with caution, without which one may encounter scala.MatchError or java.lang.ClassCastException at runtime. In most cases one can and should address the warning instead of suppressing it.

    object Test extends App {
      // This would normally warn "match is not exhaustive"
      // because `None` is not covered.
      def f(x: Option[String]) = (x: @unchecked) match { case Some(y) => y }
      // This would normally warn "type pattern is unchecked"
      // but here will blindly cast the head element to String.
      def g(xs: Any) = xs match { case x: List[String @unchecked] => x.head }
    }
    Since

    2.4

  156. class volatile extends Annotation with StaticAnnotation

    Permalink
    Annotations
    @field()
  157. trait DelayedInit extends AnyRef

    Permalink

    Classes and objects (but note, not traits) inheriting the DelayedInit marker trait will have their initialization code rewritten as follows: code becomes delayedInit(code).

    Classes and objects (but note, not traits) inheriting the DelayedInit marker trait will have their initialization code rewritten as follows: code becomes delayedInit(code).

    Initialization code comprises all statements and all value definitions that are executed during initialization.

    Example:

    trait Helper extends DelayedInit {
      def delayedInit(body: => Unit) = {
        println("dummy text, printed before initialization of C")
        body // evaluates the initialization code of C
      }
    }
    
    class C extends Helper {
      println("this is the initialization code of C")
    }
    
    object Test extends App {
      val c = new C
    }

    Should result in the following being printed:

    dummy text, printed before initialization of C
    this is the initialization code of C
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) DelayedInit semantics can be surprising. Support for App will continue. See the release notes for more details: https://github.com/scala/scala/releases/tag/v2.11.0-RC1

    See also

    "Delayed Initialization" subsection of the Scala Language Specification (section 5.1)

  158. trait NotNull extends Any

    Permalink

    A marker trait for things that are not allowed to be null

    A marker trait for things that are not allowed to be null

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) This trait will be removed

    Since

    2.5

  159. abstract class Responder[+A] extends Serializable

    Permalink

    Instances of responder are the building blocks of small programs written in continuation passing style.

    Instances of responder are the building blocks of small programs written in continuation passing style. By using responder classes in for comprehensions, one can embed domain-specific languages in Scala while giving the impression that programs in these DSLs are written in direct style.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) This class will be removed

    Version

    1.0

    Since

    2.1

Value Members

  1. val #::: scala.collection.immutable.Stream.#::.type

    Permalink
  2. val +:: scala.collection.+:.type

    Permalink
  3. val :+: scala.collection.:+.type

    Permalink
  4. val ::: scala.collection.immutable.::.type

    Permalink
  5. val AnyRef: Specializable

    Permalink
  6. object Array extends FallbackArrayBuilding with Serializable

    Permalink

    Utility methods for operating on arrays.

    Utility methods for operating on arrays. For example:

    val a = Array(1, 2)
    val b = Array.ofDim[Int](2)
    val c = Array.concat(a, b)

    where the array objects a, b and c have respectively the values Array(1, 2), Array(0, 0) and Array(1, 2, 0, 0).

    Version

    1.0

  7. val BigDecimal: scala.math.BigDecimal.type

    Permalink
  8. val BigInt: scala.math.BigInt.type

    Permalink
  9. object Boolean extends AnyValCompanion

    Permalink
  10. object Byte extends AnyValCompanion

    Permalink
  11. object Char extends AnyValCompanion

    Permalink
  12. object Console extends DeprecatedConsole with AnsiColor

    Permalink

    Implements functionality for printing Scala values on the terminal as well as reading specific values.

    Implements functionality for printing Scala values on the terminal as well as reading specific values. Also defines constants for marking up text on ANSI terminals.

    Version

    1.0, 03/09/2003

  13. object Double extends AnyValCompanion

    Permalink
  14. val Either: scala.util.Either.type

    Permalink
  15. val Equiv: scala.math.Equiv.type

    Permalink
  16. object Float extends AnyValCompanion

    Permalink
  17. val Fractional: scala.math.Fractional.type

    Permalink
  18. object Function

    Permalink

    A module defining utility methods for higher-order functional programming.

    A module defining utility methods for higher-order functional programming.

    Version

    1.0, 29/11/2006

  19. val IndexedSeq: scala.collection.IndexedSeq.type

    Permalink
  20. object Int extends AnyValCompanion

    Permalink
  21. val Integral: scala.math.Integral.type

    Permalink
  22. val Iterable: scala.collection.Iterable.type

    Permalink
  23. val Iterator: scala.collection.Iterator.type

    Permalink
  24. val Left: scala.util.Left.type

    Permalink
  25. val List: scala.collection.immutable.List.type

    Permalink
  26. object Long extends AnyValCompanion

    Permalink
  27. val Nil: scala.collection.immutable.Nil.type

    Permalink
  28. object None extends Option[Nothing] with Product with Serializable

    Permalink

    This case object represents non-existent values.

    This case object represents non-existent values.

    Annotations
    @SerialVersionUID()
    Version

    1.0, 16/07/2003

  29. val Numeric: scala.math.Numeric.type

    Permalink
  30. object Option extends Serializable

    Permalink
  31. val Ordered: scala.math.Ordered.type

    Permalink
  32. val Ordering: scala.math.Ordering.type

    Permalink
  33. object PartialFunction

    Permalink

    A few handy operations which leverage the extra bit of information available in partial functions.

    A few handy operations which leverage the extra bit of information available in partial functions. Examples:

    import PartialFunction._
    
    def strangeConditional(other: Any): Boolean = cond(other) {
      case x: String if x == "abc" || x == "def"  => true
      case x: Int => true
    }
    def onlyInt(v: Any): Option[Int] = condOpt(v) { case x: Int => x }
    Since

    2.8

  34. object Predef extends LowPriorityImplicits with DeprecatedPredef

    Permalink

    The Predef object provides definitions that are accessible in all Scala compilation units without explicit qualification.

    The Predef object provides definitions that are accessible in all Scala compilation units without explicit qualification.

    Commonly Used Types

    Predef provides type aliases for types which are commonly used, such as the immutable collection types scala.collection.immutable.Map, scala.collection.immutable.Set, and the scala.collection.immutable.List constructors (scala.collection.immutable.:: and scala.collection.immutable.Nil).

    Console I/O

    Predef provides a number of simple functions for console I/O, such as print, println, readLine, readInt, etc. These functions are all aliases of the functions provided by scala.Console.

    Assertions

    A set of assert functions are provided for use as a way to document and dynamically check invariants in code. Invocations of assert can be elided at compile time by providing the command line option -Xdisable-assertions, which raises -Xelide-below above elidable.ASSERTION, to the scalac command.

    Variants of assert intended for use with static analysis tools are also provided: assume, require and ensuring. require and ensuring are intended for use as a means of design-by-contract style specification of pre- and post-conditions on functions, with the intention that these specifications could be consumed by a static analysis tool. For instance,

    def addNaturals(nats: List[Int]): Int = {
      require(nats forall (_ >= 0), "List contains negative numbers")
      nats.foldLeft(0)(_ + _)
    } ensuring(_ >= 0)

    The declaration of addNaturals states that the list of integers passed should only contain natural numbers (i.e. non-negative), and that the result returned will also be natural. require is distinct from assert in that if the condition fails, then the caller of the function is to blame rather than a logical error having been made within addNaturals itself. ensuring is a form of assert that declares the guarantee the function is providing with regards to its return value.

    Implicit Conversions

    A number of commonly applied implicit conversions are also defined here, and in the parent type scala.LowPriorityImplicits. Implicit conversions are provided for the "widening" of numeric values, for instance, converting a Short value to a Long value as required, and to add additional higher-order functions to Array values. These are described in more detail in the documentation of scala.Array.

  35. object Product1

    Permalink
  36. object Product10

    Permalink
  37. object Product11

    Permalink
  38. object Product12

    Permalink
  39. object Product13

    Permalink
  40. object Product14

    Permalink
  41. object Product15

    Permalink
  42. object Product16

    Permalink
  43. object Product17

    Permalink
  44. object Product18

    Permalink
  45. object Product19

    Permalink
  46. object Product2

    Permalink
  47. object Product20

    Permalink
  48. object Product21

    Permalink
  49. object Product22

    Permalink
  50. object Product3

    Permalink
  51. object Product4

    Permalink
  52. object Product5

    Permalink
  53. object Product6

    Permalink
  54. object Product7

    Permalink
  55. object Product8

    Permalink
  56. object Product9

    Permalink
  57. object Proxy

    Permalink
  58. val Range: scala.collection.immutable.Range.type

    Permalink
  59. val Right: scala.util.Right.type

    Permalink
  60. val Seq: scala.collection.Seq.type

    Permalink
  61. object Short extends AnyValCompanion

    Permalink
  62. object Specializable

    Permalink
  63. val Stream: scala.collection.immutable.Stream.type

    Permalink
  64. val StringBuilder: scala.collection.mutable.StringBuilder.type

    Permalink
  65. object StringContext extends Serializable

    Permalink
  66. object Symbol extends UniquenessCache[String, Symbol] with Serializable

    Permalink
  67. val Traversable: scala.collection.Traversable.type

    Permalink
  68. object Unit extends AnyValCompanion

    Permalink
  69. val Vector: scala.collection.immutable.Vector.type

    Permalink
  70. package annotation

    Permalink
  71. package beans

    Permalink
  72. package collection

    Permalink

    Contains the base traits and objects needed to use and extend Scala's collection library.

    Contains the base traits and objects needed to use and extend Scala's collection library.

    Guide

    A detailed guide for using the collections library is available at http://docs.scala-lang.org/overviews/collections/introduction.html. Developers looking to extend the collections library can find a description of its architecture at http://docs.scala-lang.org/overviews/core/architecture-of-scala-collections.html.

    Using Collections

    It is convenient to treat all collections as either a scala.collection.Traversable or scala.collection.Iterable, as these traits define the vast majority of operations on a collection.

    Collections can, of course, be treated as specifically as needed, and the library is designed to ensure that the methods that transform collections will return a collection of the same type:

    scala> val array = Array(1,2,3,4,5,6)
    array: Array[Int] = Array(1, 2, 3, 4, 5, 6)
    
    scala> array map { _.toString }
    res0: Array[String] = Array(1, 2, 3, 4, 5, 6)
    
    scala> val list = List(1,2,3,4,5,6)
    list: List[Int] = List(1, 2, 3, 4, 5, 6)
    
    scala> list map { _.toString }
    res1: List[String] = List(1, 2, 3, 4, 5, 6)

    Creating Collections

    The most common way to create a collection is to use its companion object as a factory. The three most commonly used collections are scala.collection.Seq, scala.collection.immutable.Set, and scala.collection.immutable.Map. They can be used directly as shown below since their companion objects are all available as type aliases in either the scala package or in scala.Predef. New collections are created like this:

    scala> val seq = Seq(1,2,3,4,1)
    seq: Seq[Int] = List(1, 2, 3, 4, 1)
    
    scala> val set = Set(1,2,3,4,1)
    set: scala.collection.immutable.Set[Int] = Set(1, 2, 3, 4)
    
    scala> val map = Map(1 -> "one", 2 -> "two", 3 -> "three", 2 -> "too")
    map: scala.collection.immutable.Map[Int,String] = Map(1 -> one, 2 -> too, 3 -> three)

    It is also typical to prefer the scala.collection.immutable collections over those in scala.collection.mutable; the types aliased in the scala.Predef object are the immutable versions.

    Also note that the collections library was carefully designed to include several implementations of each of the three basic collection types. These implementations have specific performance characteristics which are described in the guide.

    The concrete parallel collections also have specific performance characteristics which are described in the parallel collections guide

    Converting between Java Collections

    The scala.collection.JavaConversions object provides implicit defs that will allow mostly seamless integration between APIs using Java Collections and the Scala collections library.

    Alternatively the scala.collection.JavaConverters object provides a collection of decorators that allow converting between Scala and Java collections using asScala and asJava methods.

  73. package compat

    Permalink
  74. package concurrent

    Permalink

    This package object contains primitives for concurrent and parallel programming.

    This package object contains primitives for concurrent and parallel programming.

    Guide

    A more detailed guide to Futures and Promises, including discussion and examples can be found at http://docs.scala-lang.org/overviews/core/futures.html.

    Common Imports

    When working with Futures, you will often find that importing the whole concurrent package is convenient, furthermore you are likely to need an implicit ExecutionContext in scope for many operations involving Futures and Promises:

    import scala.concurrent._
    import ExecutionContext.Implicits.global

    Specifying Durations

    Operations often require a duration to be specified. A duration DSL is available to make defining these easier:

    import scala.concurrent.duration._
    val d: Duration = 10.seconds

    Using Futures For Non-blocking Computation

    Basic use of futures is easy with the factory method on Future, which executes a provided function asynchronously, handing you back a future result of that function without blocking the current thread. In order to create the Future you will need either an implicit or explicit ExecutionContext to be provided:

    import scala.concurrent._
    import ExecutionContext.Implicits.global  // implicit execution context
    
    val firstZebra: Future[Int] = Future {
      val source = scala.io.Source.fromFile("/etc/dictionaries-common/words")
      source.toSeq.indexOfSlice("zebra")
    }

    Avoid Blocking

    Although blocking is possible in order to await results (with a mandatory timeout duration):

    import scala.concurrent.duration._
    Await.result(firstZebra, 10.seconds)

    and although this is sometimes necessary to do, in particular for testing purposes, blocking in general is discouraged when working with Futures and concurrency in order to avoid potential deadlocks and improve performance. Instead, use callbacks or combinators to remain in the future domain:

    val animalRange: Future[Int] = for {
      aardvark <- firstAardvark
      zebra <- firstZebra
    } yield zebra - aardvark
    
    animalRange.onSuccess {
      case x if x > 500000 => println("It's a long way from Aardvark to Zebra")
    }
  75. package io

    Permalink
  76. object language

    Permalink

    The scala.language object controls the language features available to the programmer, as proposed in the SIP-18 document.

    The scala.language object controls the language features available to the programmer, as proposed in the SIP-18 document.

    Each of these features has to be explicitly imported into the current scope to become available:

    import language.postfixOps // or language._
    List(1, 2, 3) reverse

    The language features are:

  77. object languageFeature

    Permalink
  78. package math

    Permalink

    The package object scala.math contains methods for performing basic numeric operations such as elementary exponential, logarithmic, root and trigonometric functions.

  79. package ref

    Permalink
  80. package reflect

    Permalink
  81. package runtime

    Permalink
  82. package sys

    Permalink

    The package object scala.sys contains methods for reading and altering core aspects of the virtual machine as well as the world outside of it.

    The package object scala.sys contains methods for reading and altering core aspects of the virtual machine as well as the world outside of it.

    Version

    2.9

    Since

    2.9

  83. package text

    Permalink
  84. package util

    Permalink

Deprecated Value Members

  1. object Responder extends Serializable

    Permalink

    This object contains utility methods to build responders.

    This object contains utility methods to build responders.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) This object will be removed

    Version

    1.0

    Since

    2.1

    See also

    class Responder

Inherited from AnyRef

Inherited from Any

Ungrouped