欢迎!请参阅关于 页面以获取更多关于其工作的信息。
为什么 (str (map identity [1 2])) 返回 clojure.lang.LazySeq@3e2?这是漏洞吗?例如,(str (seq (map identity [1 2]))) 返回 (1 2),而 (str (doall (map identity [1 2]))) 仍然返回 clojure.lang.LazySeq@3e2。
(str (map identity [1 2]))
clojure.lang.LazySeq@3e2
(str (seq (map identity [1 2])))
(1 2)
(str (doall (map identity [1 2])))
这是已知问题,请参阅 https://clojure.atlassian.net/browse/CLJ-2647