toList

fun <T> Pair<T, T>.toList(): List<T>(source)

Converts this pair into a list.

Since Kotlin

1.0

Samples

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
}

fun <T> Triple<T, T, T>.toList(): List<T>(source)

Converts this triple into a list.

Since Kotlin

1.0

Samples

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
}