7
是否可以使以下代碼有效?返回Shapeless中大小爲n的列表的方法
def zeroTo[N <: Nat]:Sized[List[Int], N] = {
new Sized[List[Int], N](List.iterate(0, toInt[N])(1+)) {
type A = Int
}
}
我收到一個編譯錯誤,說「無法找到參數toIntN的隱式值:shapeless.ToInt [N]」。