jeggy
07/25/2020, 8:11 PMval data: Map<Int, Pair<String, String>> = mapOf(
25 to ("Hello" to "World")
)
data.map { (num: Int, (hello: String, world: String)) ->
// ...
}
How come something like this is not valid code?Arkadii Ivanov
07/25/2020, 8:17 PM