2
在被稱爲scala(2.11)宏的方法中,有沒有一種方法可以通過編程來確定Type
是否爲case class
?檢測scala宏中的case類
對我通過工作方法的API歸結爲:
def typeIsCaseClass(c: Context)(targetType: c.universe.Type): Boolean = {
// targetType "is case class?"
}
我願意改變API如果需要的話。