gpt4 book ai didi

clojure - 从 Clojure 中的嵌套结构中获取的惯用方法

转载 作者:行者123 更新时间:2023-12-02 10:48:54 24 4
gpt4 key购买 nike

以下哪一个更符合 Clojure 习惯?

(def book {:title "Joy of Clojure" 
:authors ["Michael Fogus" "Chris Houser"]})

(get-in book [:authors 0])
;; => "Michael Fogus"

(-> book :authors first)
;; => "Michael Fogus"

当我有更复杂的数据结构时,这变得更加相关。想必两者之间没有技术差异?

最佳答案

get-in 对于嵌套结构来说更好,因为许多有趣的键是不可调用的,特别是向量中的索引(除了 firstsecond) 或 HashMap 中的字符串键。

user=> (get-in [{:a 0} 1 nil "unknown" {:b {"context info" 42}}] [4 :b "context info"])
42

关于clojure - 从 Clojure 中的嵌套结构中获取的惯用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28347223/

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