data class Tuple3<out A, out B, out C>
Tuple3(a: A, b: B, c: C)
val a: A
val b: B
val c: C
fun toList(): List<Any?>
fun toString(): String