Can anybody provide some details on <:< operator in scala.
I think:
if(apple <:< fruit) //checks if apple is a subclass of fruit.
Are there any other explanations? I see many definitions in the scala source file.
|
Can anybody provide some details on
Are there any other explanations? I see many definitions in the scala source file. |
||||
| show 4 more comments |
|
In this case, For the method on For the type in
|
|||||||||||||||||||
|
|
The
This uses the Scala feature that a generic type I'm sure I'd seen some discussion on this on one of the Scala mailing lists, but can't find it at the moment. |
|||||||||||
|
|
I asked around, and this is the explanation I got:
|
|||
|
|
|
Actually, it checks if the class represented by the For instance:
|
|||
|
|
|
Copy from scala.Predef.scala:
|
|||
|
|
|
Hmm... I can't seem to find "<:<" anywhere as well, but "<:" denotes subtyping. From http://jim-mcbeath.blogspot.com/2008/09/scala-syntax-primer.html#types :
|
|||
|
|
|
To better understand the implementation.
I tried to devise a simpler implementation. The following did not work.
At least because it won't type check in all valid use cases.
|
|||
|
|
Manifestor the class defined inPredef? – Ben Lings Apr 8 '10 at 21:49