Welcome! Please see the About page for a little more info on how this works.

+2 votes
in Collections by

Why does (str (map identity [1 2])) return clojure.lang.LazySeq@3e2?
Is this a bug?
For example, (str (seq (map identity [1 2]))) returns (1 2) while (str (doall (map identity [1 2]))) still returns clojure.lang.LazySeq@3e2.

1 Answer

+1 vote
by
...