dotty / scala3 unmap a mapped tuple type to its constituent types

101 Views Asked by At

im having trouble unmapping a mapped tuple to its constituent types. How can i implement the read method of Impl[T] in a typesafe way? currently I am just doing it with Tuple.toArray / Tuple.fromArray

trait Reader[A]:

  def read: A


object Reader:

  def apply[T <: Tuple] (columns: Tuple.Map[T, Reader]): Reader[T] = Impl(columns)

  private class Impl[T <: Tuple](columns: Tuple.Map[T, Reader]) extends Reader[T]:

    def read: T = ???

Edit (1): added not typesafe code

  private class Impl[T <: Tuple](columns: Tuple.Map[T, Reader]) extends Reader[T]:
    def read: T = 
      val array = 
        columns
          .toArray
          .asInstanceOf[Array[Reader[_]]]
      val read = array.map(_.read)
      val tuple = 
        Tuple
          .fromArray(read)
          .asInstanceOf[T]
      tuple

Edit (2): current incomplete attempt - contains a PolyFunction error

extension [F[_], T <: Tuple] (mapped: Tuple.Map[T, F]):

  def unmap(f: [a] => F[a] => a): T = ???

object Reader:

  private class Impl[T <: Tuple](columns: Tuple.Map[T, Reader]) extends Reader[T]:

    def read: T = 
      val read_column: [a] => Reader[a] => a = [a] => (reader: Reader[a]) => reader.read
      val tuple: T = columns.unmap(read_column)
      tuple

0

There are 0 best solutions below