gpt4 book ai didi

Clojure:为什么扁平化 "the wrong thing to use"

转载 作者:行者123 更新时间:2023-12-04 06:37:18 24 4
gpt4 key购买 nike

自从我开始使用 Clojure 以来,我已经读过几次这种东西。

例如,这里:How to convert map to a sequence?

在一些推文中,我不记得确切地说是“如果你使用 flatten 你可能做错了”。

我想知道,flatten 有什么问题?

最佳答案

我认为这就是他们在您链接的答案中所谈论的内容:

so> ((comp flatten seq) {:a [1 2] :b [3 4]})
(:b 3 4 :a 1 2)
so> (apply concat {:a [1 2] :b [3 4]})
(:b [3 4] :a [1 2])

Flatten 将从键和值中删除结构,这可能不是您想要的。在某些用例中,您确实希望删除嵌套序列的结构,并且为这种情况编写了 flatten。但是对于解构映射,您通常确实希望保持内部序列不变。

关于Clojure:为什么扁平化 "the wrong thing to use",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25182904/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com