Scala Library Documentation
|
|
abstract
class
Any
Class Any
is the root of the Scala class hierarchy. Every class in a
Scala execution
environment inherits directly or indirectly from this class.
Class Any
has two direct subclasses:
AnyRef
and
AnyVal
.
Method Summary | |
final def
|
!= (arg0 : Any) : Boolean |
final def
|
== (arg0 : Any) : Boolean |
final def
|
asInstanceOf [T0] : T0 |
def
|
equals (arg0 : Any) : Boolean |
def
|
hashCode : Int |
final def
|
isInstanceOf [T0] : Boolean |
def
|
toString : java.lang.String |
Method Details |
def
hashCode : Int
def
toString : java.lang.String
final
def
isInstanceOf[T0] : Boolean
final
def
asInstanceOf[T0] : T0
Scala Library Documentation
|
|