Answers for "iterate hashmap in kotlin"

31

java iterate through hashmap

for (Map.Entry<String, String> entry : yourHashMap.entrySet()) {
	System.out.println(entry.getKey() + " = " + entry.getValue());
}
Posted by: Guest on April-13-2020
0

kotlin map foreach

map.forEach { (key, value) -> println("$key = $value") }
Posted by: Guest on April-21-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language