toList
Converts this pair into a list.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//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
}
Converts this triple into a list.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//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
}