我正在使用Shapeless 2.2.5。 我尝试使用下面的代码将元组转换为HList。
import shapeless._
import syntax.std.product._
(23, "foo", 2.0, true).productElements
但是我收到了编译错误。
[error] /scala/testScala/src/test/scala/lombok/shapeless/TestTuple2HList.scala:12: could not find implicit value for parameter gen: shapeless.Generic[(Int, String, Double, Boolean)]
[error] (23, "foo", 2.0, true).productElements
测试转换.scala in https://github.com/milessabin/shapeless/blob/master/core/src/test/scala/shapeless/conversions.scala
没有为Generic [(Int,String,Double,Boolean)]提供隐式值。
我错过了一些进口产品吗?
提前感谢您的任何帮助!
盛
答案 0 :(得分:4)
应该是import syntax.std.tuple._
而不是import syntax.std.product._
。