Logo

Programming-Idioms

History of Idiom 13 > diff from v65 to v66

Edit summary for version 66 by finalfantasia:
[Clojure] print value; formatting

Version 65

2019-09-26, 18:18:10

Version 66

2019-09-26, 18:21:02

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
(doseq [k {:a "x" :b "y" :c "z"}] (prn k))
Code
(doseq [[k x] mymap]
  (println k ":" x))