case class Person(first: String, last: String, full: String = "blah")
val one = Person("Rachel","Green")
// one: Person = Person(Rachel,Green,blah)
val tuple1 = ("Ross","Geller")
// tuple1: (String, String) = (Ross,Geller)
Person tupled tuple1
// <console>:15: error: type mismatch; found : (String, String) required: (String, String, String
Я хочу преобразовать Tuple13 в класс дел со значением по умолчанию.