Diverging implicit expansion for shapeless LeftFolder

494 Views Asked by At

I'm trying to solve this problem and want to fold over an HList using a Poly2 function.

Here's a self-contained MWE (you can copy-paste this inside a REPL with shapeless 2.0 in order to reproduce the issue)

import shapeless._; import shapeless.record._

case class RowParser[T](value: T)

sealed trait ColParser[T, K <: Symbol] { val column: Witness.Aux[K] }
case class Nullable[T, K <: Symbol](column: Witness.Aux[K], parserF: String => RowParser[T]) extends ColParser[T, K]
case class NonNullable[T, K <: Symbol](column: Witness.Aux[K], parserF: String => RowParser[T]) extends ColParser[T, K]

val cols = NonNullable('col1, (_ => RowParser(42))) :: Nullable('col2, (_ => RowParser("foo"))) :: HNil

object toRecord extends Poly2 {
  implicit def colParser[C, T, K <: Symbol, LL <: HList](
    implicit ev: C <:< ColParser[T,K]
  ) = at[Tuple2[List[Int], LL], C] {
    case ((vals, rec), x) => (vals, field[K](vals.headOption) :: rec)
  }
}

cols.foldLeft((List(1,2), HNil))(toRecord)
// expected: Some(1) :: Some(1) :: HNil

I get this error:

error: diverging implicit expansion for type shapeless.ops.hlist.LeftFolder[shapeless.::[NonNullable[Int,this.T],shapeless.::[Nullable[String,this.T],shapeless.HNil]],(List[Int], shapeless.HNil.type),toRecord.type]

starting with method hnilLeftFolder in object LeftFolder cols.foldLeft((List(1,2), HNil))(toRecord)

So apparently the compiler can find multiple implicits to produce the LeftFolder foldLeft needs.

I can't figure out how to disambiguate and explicitly tell the compiler I actually want to derive a LeftFolder which uses toRecord.

0

There are 0 best solutions below