Object

scala

Predef

Related Doc: package scala

Permalink

object Predef extends LowPriorityImplicits with DeprecatedPredef

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.

Source
Predef.scala
Linear Supertypes
DeprecatedPredef, LowPriorityImplicits, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Predef
  2. DeprecatedPredef
  3. LowPriorityImplicits
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class <:<[-From, +To] extends (From) ⇒ To with Serializable

    Permalink

    An instance of A <:< B witnesses that A is a subtype of B.

    An instance of A <:< B witnesses that A is a subtype of B. Requiring an implicit argument of the type A <:< B encodes the generalized constraint A <: B.

    Annotations
    @implicitNotFound( msg = ... )
    Note

    we need a new type constructor <:< and evidence conforms, as reusing Function1 and identity leads to ambiguities in case of type errors (any2stringadd is inferred) To constrain any abstract type T that's in scope in a method's argument list (not just the method's own type parameters) simply add an implicit argument of type T <:< U, where U is the required upper bound; or for lower-bounds, use: L <:< T, where L is the required lower bound. In part contributed by Jason Zaugg.

  2. sealed abstract class =:=[From, To] extends (From) ⇒ To with Serializable

    Permalink

    An instance of A =:= B witnesses that the types A and B are equal.

    An instance of A =:= B witnesses that the types A and B are equal.

    Annotations
    @implicitNotFound( msg = ... )
    See also

    <:< for expressing subtyping constraints

  3. implicit final class ArrayCharSequence extends CharSequence

    Permalink
  4. implicit final class ArrowAssoc[A] extends AnyVal

    Permalink
  5. type Class[T] = java.lang.Class[T]

    Permalink
  6. class DummyImplicit extends AnyRef

    Permalink

    A type for which there is always an implicit value.

    A type for which there is always an implicit value.

    See also

    scala.Array$, method fallbackCanBuildFrom

  7. implicit final class Ensuring[A] extends AnyVal

    Permalink
  8. type Function[-A, +B] = (A) ⇒ B

    Permalink
  9. type Manifest[T] = reflect.Manifest[T]

    Permalink
    Annotations
    @implicitNotFound( msg = "No Manifest available for ${T}." )
  10. type Map[A, +B] = collection.immutable.Map[A, B]

    Permalink
  11. type OptManifest[T] = reflect.OptManifest[T]

    Permalink
  12. implicit final class RichException extends AnyVal

    Permalink
  13. implicit final class SeqCharSequence extends CharSequence

    Permalink
  14. type Set[A] = collection.immutable.Set[A]

    Permalink
  15. type String = java.lang.String

    Permalink

    The String type in Scala has methods that come either from the underlying Java String (see the documentation corresponding to your Java version, for example http://docs.oracle.com/javase/8/docs/api/java/lang/String.html) or are added implicitly through scala.collection.immutable.StringOps.

  16. implicit final class StringFormat[A] extends AnyVal

    Permalink
  17. implicit final class any2stringadd[A] extends AnyVal

    Permalink
  18. type ClassManifest[T] = ClassTag[T]

    Permalink
    Annotations
    @implicitNotFound( msg = ... ) @deprecated
    Deprecated

    (Since version 2.10.0) Use scala.reflect.ClassTag instead

  19. type Pair[+A, +B] = (A, B)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use built-in tuple syntax or Tuple2 instead

  20. type Triple[+A, +B, +C] = (A, B, C)

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use built-in tuple syntax or Tuple3 instead

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. implicit def $conforms[A]: <:<[A, A]

    Permalink
  4. object =:= extends Serializable

    Permalink
  5. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  6. def ???: Nothing

    Permalink

    ??? can be used for marking methods that remain to be implemented.

    ??? can be used for marking methods that remain to be implemented.

    Exceptions thrown
  7. implicit def Boolean2boolean(x: java.lang.Boolean): Boolean

    Permalink
  8. implicit def Byte2byte(x: java.lang.Byte): Byte

    Permalink
  9. implicit def Character2char(x: Character): Char

    Permalink
  10. implicit def Double2double(x: java.lang.Double): Double

    Permalink
  11. object DummyImplicit

    Permalink
  12. implicit def Float2float(x: java.lang.Float): Float

    Permalink
  13. implicit def Integer2int(x: Integer): Int

    Permalink
  14. implicit def Long2long(x: java.lang.Long): Long

    Permalink
  15. val Manifest: ManifestFactory.type

    Permalink
  16. val Map: collection.immutable.Map.type

    Permalink
  17. val NoManifest: reflect.NoManifest.type

    Permalink
  18. val Set: collection.immutable.Set.type

    Permalink
  19. implicit def Short2short(x: java.lang.Short): Short

    Permalink
  20. implicit val StringCanBuildFrom: CanBuildFrom[String, Char, String]

    Permalink
  21. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  22. final def assert(assertion: Boolean, message: ⇒ Any): Unit

    Permalink

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    assertion

    the expression to test

    message

    a String to include in the failure message

    Annotations
    @elidable( level = ASSERTION ) @inline()
    See also

    elidable

  23. def assert(assertion: Boolean): Unit

    Permalink

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    assertion

    the expression to test

    Annotations
    @elidable( level = ASSERTION )
    See also

    elidable

  24. final def assume(assumption: Boolean, message: ⇒ Any): Unit

    Permalink

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. This method differs from assert only in the intent expressed: assert contains a predicate which needs to be proven, while assume contains an axiom for a static checker. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    assumption

    the expression to test

    message

    a String to include in the failure message

    Annotations
    @elidable( level = ASSERTION ) @inline()
    See also

    elidable

  25. def assume(assumption: Boolean): Unit

    Permalink

    Tests an expression, throwing an AssertionError if false.

    Tests an expression, throwing an AssertionError if false. This method differs from assert only in the intent expressed: assert contains a predicate which needs to be proven, while assume contains an axiom for a static checker. Calls to this method will not be generated if -Xelide-below is at least ASSERTION.

    assumption

    the expression to test

    Annotations
    @elidable( level = ASSERTION )
    See also

    elidable

  26. implicit def augmentString(x: String): StringOps

    Permalink
    Annotations
    @inline()
  27. implicit def boolean2Boolean(x: Boolean): java.lang.Boolean

    Permalink
  28. implicit def booleanArrayOps(xs: Array[Boolean]): ArrayOps[Boolean]

    Permalink
  29. implicit def booleanWrapper(x: Boolean): RichBoolean

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  30. implicit def byte2Byte(x: Byte): java.lang.Byte

    Permalink
  31. implicit def byteArrayOps(xs: Array[Byte]): ArrayOps[Byte]

    Permalink
  32. implicit def byteWrapper(x: Byte): RichByte

    Permalink

    We prefer the java.lang.* boxed types to these wrappers in any potential conflicts.

    We prefer the java.lang.* boxed types to these wrappers in any potential conflicts. Conflicts do exist because the wrappers need to implement ScalaNumber in order to have a symmetric equals method, but that implies implementing java.lang.Number as well.

    Note - these are inlined because they are value classes, but the call to xxxWrapper is not eliminated even though it does nothing. Even inlined, every call site does a no-op retrieval of Predef's MODULE$ because maybe loading Predef has side effects!

    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  33. implicit def char2Character(x: Char): Character

    Permalink
  34. implicit def charArrayOps(xs: Array[Char]): ArrayOps[Char]

    Permalink
  35. implicit def charWrapper(c: Char): RichChar

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  36. def classOf[T]: Class[T]

    Permalink

    Retrieve the runtime representation of a class type.

    Retrieve the runtime representation of a class type. classOf[T] is equivalent to the class literal T.class in Java.

    Example:
    1. val listClass = classOf[List[_]]
      // listClass is java.lang.Class[List[_]] = class scala.collection.immutable.List
      val mapIntString = classOf[Map[Int,String]]
      // mapIntString is java.lang.Class[Map[Int,String]] = interface scala.collection.immutable.Map
  37. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  38. implicit def double2Double(x: Double): java.lang.Double

    Permalink
  39. implicit def doubleArrayOps(xs: Array[Double]): ArrayOps[Double]

    Permalink
  40. implicit def doubleWrapper(x: Double): RichDouble

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  41. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  42. def equals(arg0: Any): Boolean

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  43. implicit def fallbackStringCanBuildFrom[T]: CanBuildFrom[String, T, collection.immutable.IndexedSeq[T]]

    Permalink
    Definition Classes
    LowPriorityImplicits
  44. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  45. implicit def float2Float(x: Float): java.lang.Float

    Permalink
  46. implicit def floatArrayOps(xs: Array[Float]): ArrayOps[Float]

    Permalink
  47. implicit def floatWrapper(x: Float): RichFloat

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  48. implicit def genericArrayOps[T](xs: Array[T]): ArrayOps[T]

    Permalink
  49. implicit def genericWrapArray[T](xs: Array[T]): WrappedArray[T]

    Permalink
    Definition Classes
    LowPriorityImplicits
  50. final def getClass(): java.lang.Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  51. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  52. def identity[A](x: A): A

    Permalink
  53. def implicitly[T](implicit e: T): T

    Permalink
    Annotations
    @inline()
  54. implicit def int2Integer(x: Int): Integer

    Permalink
  55. implicit def intArrayOps(xs: Array[Int]): ArrayOps[Int]

    Permalink
  56. implicit def intWrapper(x: Int): RichInt

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  57. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  58. def locally[T](x: T): T

    Permalink
    Annotations
    @inline()
  59. implicit def long2Long(x: Long): java.lang.Long

    Permalink
  60. implicit def longArrayOps(xs: Array[Long]): ArrayOps[Long]

    Permalink
  61. implicit def longWrapper(x: Long): RichLong

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  62. def manifest[T](implicit m: Manifest[T]): Manifest[T]

    Permalink
  63. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  64. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  65. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  66. def optManifest[T](implicit m: OptManifest[T]): OptManifest[T]

    Permalink
  67. def print(x: Any): Unit

    Permalink
  68. def printf(text: String, xs: Any*): Unit

    Permalink
  69. def println(x: Any): Unit

    Permalink
  70. def println(): Unit

    Permalink
  71. implicit def refArrayOps[T <: AnyRef](xs: Array[T]): ArrayOps[T]

    Permalink
  72. final def require(requirement: Boolean, message: ⇒ Any): Unit

    Permalink

    Tests an expression, throwing an IllegalArgumentException if false.

    Tests an expression, throwing an IllegalArgumentException if false. This method is similar to assert, but blames the caller of the method for violating the condition.

    requirement

    the expression to test

    message

    a String to include in the failure message

    Annotations
    @inline()
  73. def require(requirement: Boolean): Unit

    Permalink

    Tests an expression, throwing an IllegalArgumentException if false.

    Tests an expression, throwing an IllegalArgumentException if false. This method is similar to assert, but blames the caller of the method for violating the condition.

    requirement

    the expression to test

  74. implicit def short2Short(x: Short): java.lang.Short

    Permalink
  75. implicit def shortArrayOps(xs: Array[Short]): ArrayOps[Short]

    Permalink
  76. implicit def shortWrapper(x: Short): RichShort

    Permalink
    Definition Classes
    LowPriorityImplicits
    Annotations
    @inline()
  77. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  78. def toString(): java.lang.String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  79. implicit def tuple2ToZippedOps[T1, T2](x: (T1, T2)): Ops[T1, T2]

    Permalink
  80. implicit def tuple3ToZippedOps[T1, T2, T3](x: (T1, T2, T3)): Ops[T1, T2, T3]

    Permalink
  81. implicit def unaugmentString(x: StringOps): String

    Permalink
    Annotations
    @inline()
  82. implicit def unitArrayOps(xs: Array[Unit]): ArrayOps[Unit]

    Permalink
  83. implicit def unwrapString(ws: WrappedString): String

    Permalink
    Definition Classes
    LowPriorityImplicits
  84. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  86. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. implicit def wrapBooleanArray(xs: Array[Boolean]): WrappedArray[Boolean]

    Permalink
    Definition Classes
    LowPriorityImplicits
  88. implicit def wrapByteArray(xs: Array[Byte]): WrappedArray[Byte]

    Permalink
    Definition Classes
    LowPriorityImplicits
  89. implicit def wrapCharArray(xs: Array[Char]): WrappedArray[Char]

    Permalink
    Definition Classes
    LowPriorityImplicits
  90. implicit def wrapDoubleArray(xs: Array[Double]): WrappedArray[Double]

    Permalink
    Definition Classes
    LowPriorityImplicits
  91. implicit def wrapFloatArray(xs: Array[Float]): WrappedArray[Float]

    Permalink
    Definition Classes
    LowPriorityImplicits
  92. implicit def wrapIntArray(xs: Array[Int]): WrappedArray[Int]

    Permalink
    Definition Classes
    LowPriorityImplicits
  93. implicit def wrapLongArray(xs: Array[Long]): WrappedArray[Long]

    Permalink
    Definition Classes
    LowPriorityImplicits
  94. implicit def wrapRefArray[T <: AnyRef](xs: Array[T]): WrappedArray[T]

    Permalink
    Definition Classes
    LowPriorityImplicits
  95. implicit def wrapShortArray(xs: Array[Short]): WrappedArray[Short]

    Permalink
    Definition Classes
    LowPriorityImplicits
  96. implicit def wrapString(s: String): WrappedString

    Permalink
    Definition Classes
    LowPriorityImplicits
  97. implicit def wrapUnitArray(xs: Array[Unit]): WrappedArray[Unit]

    Permalink
    Definition Classes
    LowPriorityImplicits

Deprecated Value Members

  1. val ClassManifest: ClassManifestFactory.type

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use scala.reflect.ClassTag instead

  2. object Pair

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use built-in tuple syntax or Tuple2 instead

  3. object Triple

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use built-in tuple syntax or Tuple3 instead

  4. def any2ArrowAssoc[A](x: A): ArrowAssoc[A]

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use ArrowAssoc

  5. def any2Ensuring[A](x: A): Ensuring[A]

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use Ensuring

  6. def any2stringfmt(x: Any): StringFormat[Any]

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use StringFormat

  7. def arrayToCharSequence(xs: Array[Char]): CharSequence

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use ArrayCharSequence

  8. def classManifest[T](implicit m: ClassManifest[T]): ClassManifest[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use scala.reflect.classTag[T] instead

  9. def conforms[A]: <:<[A, A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use implicitly[T <:< U] or identity instead.

  10. def error(message: String): Nothing

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.9.0) Use sys.error(message) instead

  11. def exceptionWrapper(exc: scala.Throwable): RichException

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use Throwable directly

  12. def readBoolean(): Boolean

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  13. def readByte(): Byte

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  14. def readChar(): Char

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  15. def readDouble(): Double

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  16. def readFloat(): Float

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  17. def readInt(): Int

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  18. def readLine(text: String, args: Any*): String

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  19. def readLine(): String

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  20. def readLong(): Long

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  21. def readShort(): Short

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  22. def readf(format: String): List[Any]

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  23. def readf1(format: String): Any

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  24. def readf2(format: String): (Any, Any)

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  25. def readf3(format: String): (Any, Any, Any)

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use the method in scala.io.StdIn

  26. def seqToCharSequence(xs: collection.IndexedSeq[Char]): CharSequence

    Permalink
    Definition Classes
    DeprecatedPredef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use SeqCharSequence

Inherited from DeprecatedPredef

Inherited from LowPriorityImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped