toList

fun <E> Tuple4<E, E, E, E>.toList(): List<E>
fun <E> Tuple5<E, E, E, E, E>.toList(): List<E>
fun <E> Tuple6<E, E, E, E, E, E>.toList(): List<E>
fun <E> Tuple7<E, E, E, E, E, E, E>.toList(): List<E>
fun <E> Tuple8<E, E, E, E, E, E, E, E>.toList(): List<E>
fun <E> Tuple9<E, E, E, E, E, E, E, E, E>.toList(): List<E>

Convert this tuple into a list.

Since

2.7


fun <E : Any> EntitySequence<E, *>.toList(): List<E>(source)

Return a List containing all the elements of this sequence.

The operation is terminal.