I have a nested tuple structure like (String,(String,Double)) and I want to transform it to (String,String,Double). I have various kinds of nested
(String,(String,Double))
(String,String,Double)
If you use shapeless, this is exactly what you need, I think.