toList

Common
JVM
JS
Native
1.0
fun <T> Pair<T, T>.toList(): List<T>
(source)

Converts this pair into a list.

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val mixedList: List<Any> = Pair(1, "a").toList()
println(mixedList) // [1, a]
println("mixedList[0] is Int is ${mixedList[0] is Int}") // true
println("mixedList[1] is String is ${mixedList[1] is String}") // true

val intList: List<Int> = Pair(0, 1).toList()
println(intList) // [0, 1]
//sampleEnd
}
Common
JVM
JS
Native
1.0
fun <T> Triple<T, T, T>.toList(): List<T>
(source)

Converts this triple into a list.

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val mixedList: List<Any> = Triple(1, "a", 0.5).toList()
println(mixedList) // [1, a, 0.5]
println("mixedList[0] is Int is ${mixedList[0] is Int}") // true
println("mixedList[1] is String is ${mixedList[1] is String}") // true
println("mixedList[2] is Double is ${mixedList[2] is Double}") // true

val intList: List<Int> = Triple(0, 1, 2).toList()
println(intList) // [0, 1, 2]
//sampleEnd
}