Logo

Programming-Idioms

History of Idiom 13 > diff from v78 to v79

Edit summary for version 79 by hover:
[Kotlin] add doc

Version 78

2020-03-20, 18:00:25

Version 79

2020-04-29, 09:42:30

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Illustration

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Illustration
Extra Keywords
table dictionary hash traverse traversal
Extra Keywords
table dictionary hash traverse traversal
Code
mymap.entries.forEach { print("${it.key} ${it.value}") }
Code
mymap.entries.forEach { print("${it.key} ${it.value}") }
Doc URL
https://kotlinlang.org/docs/reference/iterators.html