Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to print each elements of a hash map list using map function in clojure?

I am constructing a list of hash maps which is then passed to another function. When I try to print each hash maps from the list using map it is not working. I am able to print the full list or get the first element etc.

(defn m [a]
    (println a)
    (map #(println %) a))

The following works from the repl only.

(m (map #(hash-map :a %) [1 2 3]))

But from the program that I load using load-file it is not working. I am seeing the a but not its individual elements. What's wrong?


1 Answers

In Clojure tranform functions return a lazy sequence. So, (map #(println %) a) return a lazy sequence. When consumed, the map action is applied and only then the print-side effect is visible.

If the purpose of the function is to have a side effect, like printing, you need to eagerly evaluate the transformation. The functions dorun and doall

(def a [1 2 3])
(dorun (map #(println %) a))
; returns nil

(doall (map #(println %) a))
; returns the collection

If you actually don't want to map, but only have a side effect, you can use doseq. It is intended to 'iterate' to do side effects:

(def a [1 2 3])
(doseq [i a]
   (println i))
like image 97
Gamlor Avatar answered Nov 24 '25 00:11

Gamlor



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!