Object scala.Predef
object Predef extends LowPriorityImplicits with DeprecatedPredef
Type Members
sealed abstract class <:<[-From, +To] extends (From) ⇒ To with Serializable
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 evidenceconforms
, as reusingFunction1
andidentity
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 typeT <:< U
, whereU
is the required upper bound; or for lower-bounds, use:L <:< T
, whereL
is the required lower bound. In part contributed by Jason Zaugg.
sealed abstract class =:=[From, To] extends (From) ⇒ To with Serializable
An instance of A =:= B
witnesses that the types A
and B
are equal.
- Annotations
- @implicitNotFound( msg = ... )
- See also
<:<
for expressing subtyping constraints
implicit final class ArrayCharSequence extends CharSequence
implicit final class ArrowAssoc[A] extends AnyVal
type Class[T] = java.lang.Class[T]
class DummyImplicit extends AnyRef
A type for which there is always an implicit value.
- See also
scala.Array$, method
fallbackCanBuildFrom
implicit final class Ensuring[A] extends AnyVal
type Function[-A, +B] = (A) ⇒ B
type Manifest[T] = reflect.Manifest[T]
- Annotations
- @implicitNotFound( msg = "No Manifest available for ${T}." )
type Map[A, +B] = collection.immutable.Map[A, B]
type OptManifest[T] = reflect.OptManifest[T]
implicit final class RichException extends AnyVal
implicit final class SeqCharSequence extends CharSequence
type Set[A] = collection.immutable.Set[A]
type String = java.lang.String
implicit final class StringFormat[A] extends AnyVal
implicit final class any2stringadd[A] extends AnyVal
type ClassManifest[T] = ClassTag[T]
- Annotations
- @implicitNotFound( msg = ... ) @deprecated
- Deprecated
(Since version 2.10.0) use
scala.reflect.ClassTag
instead
type Pair[+A, +B] = (A, B)
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) use built-in tuple syntax or Tuple2 instead
type Triple[+A, +B, +C] = (A, B, C)
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) use built-in tuple syntax or Tuple3 instead
Value Members
final def !=(arg0: Any): Boolean
Test two objects for inequality.
- returns
true
if !(this == that), false otherwise.
- Definition Classes
- AnyRef → Any
final def ##(): Int
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
implicit def $conforms[A]: <:<[A, A]
final def ==(arg0: Any): Boolean
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
def ???: Nothing
???
can be used for marking methods that remain to be implemented.
- Exceptions thrown
implicit def Boolean2boolean(x: java.lang.Boolean): Boolean
implicit def Byte2byte(x: java.lang.Byte): Byte
implicit def Character2char(x: Character): Char
implicit def Double2double(x: java.lang.Double): Double
implicit def Float2float(x: java.lang.Float): Float
implicit def Integer2int(x: Integer): Int
implicit def Long2long(x: java.lang.Long): Long
val Manifest: ManifestFactory.type
val Map: collection.immutable.Map.type
val NoManifest: reflect.NoManifest.type
val Set: collection.immutable.Set.type
implicit def Short2short(x: java.lang.Short): Short
implicit val StringCanBuildFrom: CanBuildFrom[String, Char, String]
final def asInstanceOf[T0]: 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 typeT0
.
final def assert(assertion: Boolean, message: ⇒ Any): Unit
Tests an expression, throwing an AssertionError
if false. Calls to this method will not be generated if -Xelide-below
is greater than ASSERTION
.
- assertion
the expression to test
- message
a String to include in the failure message
def assert(assertion: Boolean): Unit
Tests an expression, throwing an AssertionError
if false. Calls to this method will not be generated if -Xelide-below
is greater than ASSERTION
.
- assertion
the expression to test
final def assume(assumption: Boolean, message: ⇒ Any): Unit
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 greater than ASSERTION
.
- assumption
the expression to test
- message
a String to include in the failure message
def assume(assumption: Boolean): Unit
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 greater than ASSERTION
.
- assumption
the expression to test
implicit def augmentString(x: String): StringOps
- Annotations
- @inline()
implicit def boolean2Boolean(x: Boolean): java.lang.Boolean
implicit def booleanArrayOps(xs: Array[Boolean]): ofBoolean
implicit def booleanWrapper(x: Boolean): RichBoolean
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
implicit def byte2Byte(x: Byte): java.lang.Byte
implicit def byteArrayOps(xs: Array[Byte]): ofByte
implicit def byteWrapper(x: Byte): RichByte
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()
implicit def char2Character(x: Char): Character
implicit def charArrayOps(xs: Array[Char]): ofChar
implicit def charWrapper(c: Char): RichChar
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
def classOf[T]: Class[T]
Retrieve the runtime representation of a class type. classOf[T]
is equivalent to the class literal T.class
in Java.
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
def clone(): AnyRef
Create a copy of the receiver object.
The default implementation of the clone
method is platform dependent.
- returns
a copy of the receiver object.
implicit def double2Double(x: Double): java.lang.Double
implicit def doubleArrayOps(xs: Array[Double]): ofDouble
implicit def doubleWrapper(x: Double): RichDouble
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
final def eq(arg0: AnyRef): Boolean
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
def equals(arg0: Any): Boolean
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
implicit def fallbackStringCanBuildFrom[T]: CanBuildFrom[String, T, collection.immutable.IndexedSeq[T]]
- Definition Classes
- LowPriorityImplicits
def finalize(): Unit
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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- Note
not specified by SLS as a member of AnyRef
implicit def float2Float(x: Float): java.lang.Float
implicit def floatArrayOps(xs: Array[Float]): ofFloat
implicit def floatWrapper(x: Float): RichFloat
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
implicit def genericArrayOps[T](xs: Array[T]): ArrayOps[T]
implicit def genericWrapArray[T](xs: Array[T]): WrappedArray[T]
- Definition Classes
- LowPriorityImplicits
final def getClass(): java.lang.Class[_]
Returns the runtime class representation of the object.
- returns
a class object corresponding to the runtime type of the receiver.
def hashCode(): Int
The hashCode method for reference types. See hashCode in scala.Any.
- returns
the hash code value for this object.
def identity[A](x: A): A
- Annotations
- @inline()
def implicitly[T](implicit e: T): T
- Annotations
- @inline()
implicit def int2Integer(x: Int): Integer
implicit def intArrayOps(xs: Array[Int]): ofInt
implicit def intWrapper(x: Int): RichInt
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
final def isInstanceOf[T0]: Boolean
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 typeT0
;false
otherwise.
- Definition Classes
- Any
def locally[T](x: T): T
- Annotations
- @inline()
implicit def long2Long(x: Long): java.lang.Long
implicit def longArrayOps(xs: Array[Long]): ofLong
implicit def longWrapper(x: Long): RichLong
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
def manifest[T](implicit m: Manifest[T]): Manifest[T]
final def ne(arg0: AnyRef): Boolean
Equivalent to !(this eq that)
.
- returns
true
if the argument is not a reference to the receiver object;false
otherwise.
- Definition Classes
- AnyRef
final def notify(): Unit
Wakes up a single thread that is waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Annotations
- @native()
- Note
not specified by SLS as a member of AnyRef
final def notifyAll(): Unit
Wakes up all threads that are waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Annotations
- @native()
- Note
not specified by SLS as a member of AnyRef
def optManifest[T](implicit m: OptManifest[T]): OptManifest[T]
def print(x: Any): Unit
Prints an object to out
using its toString
method.
- x
the object to print; may be null.
def printf(text: String, xs: Any*): Unit
Prints its arguments as a formatted string to the default output, based on a string pattern (in a fashion similar to printf in C).
The interpretation of the formatting patterns is described in java.util.Formatter.
Consider using the f interpolator as more type safe and idiomatic.
- text
the pattern for formatting the arguments.
- Exceptions thrown
java.lang.IllegalArgumentException
if there was a problem with the format string or arguments- See also
def println(x: Any): Unit
Prints out an object to the default output, followed by a newline character.
- x
the object to print.
def println(): Unit
implicit def refArrayOps[T <: AnyRef](xs: Array[T]): ofRef[T]
final def require(requirement: Boolean, message: ⇒ Any): Unit
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()
def require(requirement: Boolean): Unit
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
implicit def short2Short(x: Short): java.lang.Short
implicit def shortArrayOps(xs: Array[Short]): ofShort
implicit def shortWrapper(x: Short): RichShort
- Definition Classes
- LowPriorityImplicits
- Annotations
- @inline()
final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
def toString(): java.lang.String
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
implicit def tuple2ToZippedOps[T1, T2](x: (T1, T2)): Ops[T1, T2]
implicit def tuple3ToZippedOps[T1, T2, T3](x: (T1, T2, T3)): Ops[T1, T2, T3]
implicit def unaugmentString(x: StringOps): String
- Annotations
- @inline()
implicit def unitArrayOps(xs: Array[Unit]): ofUnit
implicit def unwrapString(ws: WrappedString): String
- Definition Classes
- LowPriorityImplicits
final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
final def wait(arg0: Long): Unit
implicit def wrapBooleanArray(xs: Array[Boolean]): WrappedArray[Boolean]
- Definition Classes
- LowPriorityImplicits
implicit def wrapByteArray(xs: Array[Byte]): WrappedArray[Byte]
- Definition Classes
- LowPriorityImplicits
implicit def wrapCharArray(xs: Array[Char]): WrappedArray[Char]
- Definition Classes
- LowPriorityImplicits
implicit def wrapDoubleArray(xs: Array[Double]): WrappedArray[Double]
- Definition Classes
- LowPriorityImplicits
implicit def wrapFloatArray(xs: Array[Float]): WrappedArray[Float]
- Definition Classes
- LowPriorityImplicits
implicit def wrapIntArray(xs: Array[Int]): WrappedArray[Int]
- Definition Classes
- LowPriorityImplicits
implicit def wrapLongArray(xs: Array[Long]): WrappedArray[Long]
- Definition Classes
- LowPriorityImplicits
implicit def wrapRefArray[T <: AnyRef](xs: Array[T]): WrappedArray[T]
- Definition Classes
- LowPriorityImplicits
implicit def wrapShortArray(xs: Array[Short]): WrappedArray[Short]
- Definition Classes
- LowPriorityImplicits
implicit def wrapString(s: String): WrappedString
- Definition Classes
- LowPriorityImplicits
implicit def wrapUnitArray(xs: Array[Unit]): WrappedArray[Unit]
- Definition Classes
- LowPriorityImplicits
object =:= extends Serializable
object DummyImplicit
© 2002-2019 EPFL, with contributions from Lightbend.
Licensed under the Apache License, Version 2.0.
https://www.scala-lang.org/api/2.12.9/scala/Predef$.html
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 Output
For basic console output,
Predef
provides convenience methods print and println, which are aliases of the methods in the object scala.Console.Assertions
A set of
assert
functions are provided for use as a way to document and dynamically check invariants in code. Invocations ofassert
can be elided at compile time by providing the command line option-Xdisable-assertions
, which raises-Xelide-below
aboveelidable.ASSERTION
, to thescalac
command.Variants of
assert
intended for use with static analysis tools are also provided:assume
,require
andensuring
.require
andensuring
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,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 fromassert
in that if the condition fails, then the caller of the function is to blame rather than a logical error having been made withinaddNaturals
itself.ensuring
is a form ofassert
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.