简体   繁体   中英

how destruct kotlin nested pairs with forEach

I need to destruct kotlin nested pairs. How can do this simply without using pair.first/pair.second

val chars = listOf('A', 'B', 'C')
val ints = listOf(1, 2, 3)
val booleans = listOf(true, false, false)

val cib: List<Pair<Pair<Char, Int>, Boolean>> = chars.zip(ints).zip(booleans)
cib.forEach { ((c, i), b) -> // compile error
    println("$c $i $b")
}

Not sure if there really is a way of desctructuring a Pair<Pair<*,*>> straight away, but you could do this:

cib.forEach { (pair, b) -> 
    val (c, i) = pair
    //do stuff with c, i, b
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM