You can use .productIteratoror .productElementsfor things like this:
t.productElements.toList.map(println)
I used toList for rigorous work, because productIterator returns an Iterator, which is lazy.
: .foreach (, , , println)
t.productElements.toList.foreach(println)