|
Scala
1.4.0.3 |
|||
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:
new Symbol("mysym")
. .
Field Summary | |
final
|
val name: String
|
Method Summary | |
final override
|
def toString(): String
Converts this symbol to a string. |
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/CaseClass-class |
caseArity, caseElement, caseName |
Methods inherited from scala/ScalaObject-class |
getScalaType |
Field Detail |
final val name: String
Method Detail |
final override def toString(): String
|
Scala
1.4.0.3 |
|||