Suppose
case class Person(name: String, age: Int)
Then
summon[deriving.Mirror.Of[Person]].fromProduct("Sh", 43)
will compile and can be used to turn a Tuple
to a case class
. But this is not possible when I want to create a generic method based on this. i.e.
def tuple2GenericCaseClass[C <: Product](tuple: Tuple): C = summon[deriving.Mirror.Of[C]].fromProduct(tuple)
does not compile. I want something like tuple2GenericCaseClass[Person]("Sh", 43)
to work.
Actually my problem is not being able to convert tuples to case classes, since I could easily make it work by a little signature modification and an implicit conversion for each case class in scope i.e,
given Conversion[(String, Int), Person] = (tuple: (String, Int)) => Person.apply.tupled(tuple)
def tuple2GenericCaseClass[C <: Product](c: C): C = c
will let me use the same tuple2GenericCaseClass[Person]("Sh", 43)
with expected results. I want to know why summon
does not compile for generic case classes and information on how to fix it if possible?