I have a String representation as below that I would like to represent as a HList. Here is it:
123456,/02/2017,0,0,0,0,0,0,170.153
So the type that I'm interested in is:
Int :: DateTime :: Seq[Double]
I was able to manage one-to-one mapping done, but how could I convert my representation above to the Shapeless type that I would want to? Any suggestions?