How can i write a isCaseObject function in scala, so that this works:
def isCaseObject(x:Any) = /* Some Code */
case object aCaseObject
println(isCaseObject(aCaseObject)) //true
println(isCaseObject("not a case object")) //false
|
How can i write a isCaseObject function in scala, so that this works:
|
|||
|
|
|
Using reflection (Scala 2.10M4), this can be done as follows:
|
|||
|
|
|
All case classes extend Product, so you can use the type system:
If you try and call it with a not Product:
But you can call it with a case class:
|
|||||
|