使用宏展开对元素的类型类操作

时间:2014-06-03 12:20:06

标签: scala macros typeclass value-class

假设以下设置:

trait A[L] { def op(l1:L, l2:L): L }
trait E[L] { def op(l:L): L }

implicit def some2E[L:A](self:L) =  new E[L] { def op(other:L) =      
  implicitly[A[L]].op(self,other) }

有没有办法在m op n是适当的隐式a.op(m,n)的上下文中使用宏直接展开aA,或者至少避免使用其他对象创建

1 个答案:

答案 0 :(得分:0)

如果将隐式参数移动到op方法,则可以使用值类来阻止创建其他对象:

implicit class some2E[L](val self: L) extends AnyVal {
 def op(other: L)(implicit x: A[L]) = x.op(self, other)
}

Hotspot可能会内联对op中定义的some2E的调用,因此您最终会得到a.op(m, n)