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