gpt4 book ai didi

clojurescript - 如何在 Clojurescript 中获取记录的类型?

转载 作者:行者123 更新时间:2023-12-01 11:43:56 25 4
gpt4 key购买 nike

我在 Clojurescript 中定义了两条记录,如下所示:

(defrecord Html [])
(defrecord Tree [])

我需要找出可以定义为这些记录中的任何一个的项目的类型,我该怎么做?

(def a (Html.))

最佳答案

(defrecord Html [])
(defrecord Tree [])

(= (type (->Html)) Html) ; true
(= (type (->Html)) Tree) ; false

(= (type (->Tree)) Html) ; false
(= (type (->Tree)) Tree) ; true

关于clojurescript - 如何在 Clojurescript 中获取记录的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17190575/

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