Here, we will demonstrate the use of the toList() function with Triple in Kotlin. The toList() function returns the List equivalent of the given Triple.
fun main() {
// creating a new instance of the Triple
var numbers = Triple(10, 20, 30)
// Convert to the list using toList()
val list1: List<Any> = numbers.toList()
// Print the list
println("List representation is "+list1.toString())
}
Output:
List representation is [10, 20, 30]
Example 2:
fun main() {
// creating a new instance of the Triple
var student = Triple("Alvin Alexander", 35, "New York")
// Convert to the list using toList()
val list1: List<Any> = student.toList()
// Print the list
println("List representation is "+list1.toString())
}
Output:
List representation is [Alvin Alexander, 35, New York]
Example 1:
Output:
Example 2:
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer